cURL
curl --request POST \ --url https://api.edgee.app/v1/organizations \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "<string>", "slug": "<string>" }'
{ "object": "organization", "id": "<string>", "name": "<string>", "slug": "<string>", "avatar_url": "<string>", "type": "perso", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" }
Creates a new Organization.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token. More info here
Bearer <token>
<token>
The created Organization
The response is of type object.
object
Was this page helpful?