Get current user details
GET/users/current
This endpoint returns details for the currently authenticated user. If the API token used to authenticate to the API is not associated with a user, this method will return an error.
Request
Responses
- 200
- 400
- 403
- 404
- 429
- 503
This endpoint returns details for the currently authenticated user. If the API token used to authenticate to the API is not associated with a user, this method will return an error.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
user
object
required
organizations
object[]
required
{
"user": {
"id": "string",
"first_name": "string",
"last_name": "string",
"avatar_url": "string"
},
"organizations": [
{
"id": "string",
"name": "string",
"sub_domain": "string"
}
],
"api_token_id": "string"
}
No API token was provided in the Authorization header. Ensure a token is provided prefixed with Bearer
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [missing_api_token
]
{
"code": "missing_api_token",
"description": "string",
"detail": {}
}
403 error response
- application/json
- Schema
- Example (from schema)
Schema
- UnauthorizedNetworkForAPITokenSchema
- InvalidAPITokenSchema
- InvalidCapabilitiesTokenSchema
- ScopeNotGrantedErrorSchema
oneOf
Network is not allowed to access the API with this API token
Possible values: [unauthorized_network_for_api_token
]
detail
object
The IP address the request was received from
The API token provided was not valid (it may not exist or have expired)
Possible values: [invalid_api_token
]
detail
object
The capabilities token provided was not valid (either not valid, expired or not signed by the correct key)
Possible values: [invalid_capabilities_token
]
The scope required for this endpoint has not been granted to the authenticating identity
Possible values: [scope_not_granted
]
detail
ScopeNotGrantedError
{}
There is no user associated with this API token
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [no_user_associated_with_identity
]
{
"code": "no_user_associated_with_identity",
"description": "string",
"detail": {}
}
You have reached the rate limit for this type of request
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [rate_limit_reached
]
detail
object
The total number of requests per minute that are permitted
{
"code": "rate_limit_reached",
"description": "string",
"detail": {
"total_permitted": 0
}
}
The service is currently unavailable, please try again later
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [service_unavailable
]
{
"code": "service_unavailable",
"description": "string",
"detail": {}
}