Configuration
Get Configuration User by ID
VMS
Identity Provider (IDP)
Provisioning
- POSTCreate Organization
- GETList Organizations
- GETGet Organization by ID
- DELSoft Delete Organization By Id And Environment Id
- POSTCreate Connection
- GETList Connections
- GETGet Connection by ID
- GETList Jobs by Connection ID
- GETTest Connection Credentials by Connection ID
- DELDelete Connection
- PATCHUpdate Connection by ID and Organization ID
Connectors
Enrichments
Configuration
Get Configuration User by ID
Return a User who has access to a connection source by ID (Leen’s UUID).
GET
/
configuration
/
users
/
{user_id}
curl --request GET \
--url https://api.leen.dev/v1/configuration/users/{user_id} \
--header 'X-API-KEY: <api-key>' \
--header 'X-CONNECTION-ID: <api-key>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"email": "<string>",
"username": "<string>",
"last_login": "2023-11-07T05:31:56Z",
"vendor_user_id": "<string>",
"vendor": "AIKIDO",
"access_data": {}
}
Path Parameters
Response
200
application/json
Successful Response
The response is of type object
.
curl --request GET \
--url https://api.leen.dev/v1/configuration/users/{user_id} \
--header 'X-API-KEY: <api-key>' \
--header 'X-CONNECTION-ID: <api-key>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"email": "<string>",
"username": "<string>",
"last_login": "2023-11-07T05:31:56Z",
"vendor_user_id": "<string>",
"vendor": "AIKIDO",
"access_data": {}
}