Modify Project Overview
PATCH
https://deploygate.com/api/organizations/{PROJECT_NAME}
Path Params
Name | Type | Required | Description |
---|---|---|---|
PROJECT_NAME | string | true | project Name |
Body
Name | Type | Required | Description |
---|---|---|---|
description | file | false | project's Description (Publicly Displayed) |
Example
curl \
-X PATCH \
--url "https://deploygate.com/api/organizations/${PROJECT_NAME}" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}" \
--form-string "description=this is the new description of the group"
Result 200
{
"error": false,
"organization": {
"type": "Organization",
"name": "${PROJECT_NAME}",
"description": "Updated description",
"url": "https://deploygate.com/organizations/${PROJECT_NAME}"
}
}
Result 400
{}