list all user tokens
cURL
curl --request GET \ --url https://api.datalinks.com/api/v1/user/tokens \ --header 'Authorization: Bearer <token>'
[ { "created_at": "<string>", "expires_at": "<string>", "id": 123, "last_used_at": "<string>", "name": "<string>", "token": "<string>" } ]
Use a Bearer token for authentication. Submit the token using the Authorization header: Authorization: Bearer <token>. The token can be generated in Settings
Authorization
Authorization: Bearer <token>
Success
The response is of type object[].
object[]