Partially Update an Analysis Group
Partially update an existing Analysis Group.
Request
HTTP Request
PATCH https://api.predicthq.com/v1/beam/analysis-groups/$group_id
Path Parameters
Parameter
Description
group_id
An existing Beam Analysis Group ID.
Request Headers
Header
Value
Content-Type
application/json
Request Body
Response
If successful, the HTTP response code will be 202 Accepted
.
Examples
curl -X PATCH "https://api.predicthq.com/v1/beam/analysis-groups/$GROUP_ID" \
-H "Accept: application/json" \
-H "Authorization: Bearer $ACCESS_TOKEN" \
--data @<(cat <<EOF
{
"name": "Analysis Group 2",
}
EOF
)
Last updated
Was this helpful?