Acquire Project Information
GET
https://deploygate.com/api/organizations/{PROJECT_NAME}
Path Params
Name | Type | Required | Description |
---|---|---|---|
PROJECT_NAME | string | true | Project Name |
Example
curl \
-X GET \
--url "https://deploygate.com/api/organizations/${PROJECT_NAME}" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}"
Result 200
{
"error": false,
"organization": {
"type": "Organization",
"name": "ExampleProject",
"description": "This is Example Project created via API",
"url": "https://deploygate.com/organizations/ExampleProject"
}
}