cURL
curl --request GET \ --url https://relytone.data.cloud/api/v1/organizations/{id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "name": "<string>", "avatarUrl": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "members": [ { "id": "<string>", "role": "owner", "createdAt": "2023-11-07T05:31:56Z", "user": { "id": "<string>", "name": "<string>", "email": "<string>" } } ], "_count": { "projects": 123, "members": 123 } }
Get detailed information of an organization by id
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Organization identifier
Successfully retrieved organization details
Organization name
Organization avatar URL
Creation time
Update time
Show child attributes
owner
admin
member
Was this page helpful?