Acquire Organization Information
If you are using Flexible/Enterprise plan, please visit this page.
GET https://deploygate.com/api/organizations/{ORGANIZATION_NAME}
Path Params
| Name | Type | Required | Description | 
|---|---|---|---|
| ORGANIZATION_NAME | string | true | Organization Name | 
Example
curl \
  -X GET \
  --url "https://deploygate.com/api/organizations/${ORGANIZATION_NAME}" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer ${API_TOKEN}"
Result 200
{
  "error": false,
  "organization": {
    "type": "Organization",
    "name": "ExampleOrganization",
    "description": "This is Example Organization created via API",
    "url": "https://deploygate.com/organizations/ExampleOrganization"
  }
}