cURL
curl --request PATCH \ --url https://relytone.data.cloud/api/v1/organizations/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>" } '
{ "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 } }
Update basic information of an organization
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Organization identifier
Organization name
Organization description
Update successful
Organization avatar URL
Creation time
Update time
Show child attributes
owner
admin
member
Was this page helpful?