curl --request GET \
--url https://api.drip.re/api/v1/organizations/with-realms \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"realms": [
{
"id": "<string>",
"name": "<string>",
"subdomain": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
]
}
List all organizations for the authenticated user with their realms included for better performance
curl --request GET \
--url https://api.drip.re/api/v1/organizations/with-realms \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"realms": [
{
"id": "<string>",
"name": "<string>",
"subdomain": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
]
}
API Key
Default Response
The response is of type object
.
Was this page helpful?