GET
/
v1
/
organizations
/
{id}
curl --request GET \
  --url https://api.edgee.app/v1/organizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "organization",
  "id": "<string>",
  "name": "<string>",
  "slug": "<string>",
  "avatar_url": "<string>",
  "type": "perso",
  "current_billing_plan": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token. More info here

Path Parameters

id
string
required

Response

200
application/json

The retrieved Organization

The response is of type object.