cURL
curl --request POST \ --url http://localhost:3000/api/canary/authentication/organization/update \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "organizationId": "org_12345", "data": {} } '
{ "statusCode": 400, "message": [ "Invalid input data" ], "error": "Bad Request" }
Update an organization’s details
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the organization to update
"org_12345"
Data to update
Organization updated successfully