Delete a group

Deletes a user group. Users in the group are not removed.

DELETE https://www.canva.com/_scim/v2/Groups/{canva_scim_id}
#Authorizationstring
Required

Provides credentials to authenticate the request, in the form of a Bearer token.

For example: Authorization: Bearer {token}

#canva_scim_idstring
Required

The Canva-generated SCIM ID for the group.

Examples for using the /_scim/v2/Groups/{canva_scim_id} endpoint:

curl --request DELETE 'https://www.canva.com/_scim/v2/Groups/{canva_scim_id}' \
--header 'Authorization: Bearer {token}'
sh

If successful, the endpoint returns the status code 204 No content without a response body.

#schemasstring[]

The value for this can only be urn:ietf:params:scim:api:messages:2.0:Error.

#detailstring

The value for this can only be group {canva_scim_id} not found.

#statusstring

The HTTP status code of the error.

{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"detail": "group {canva_scim_id} not found",
"status": "404"
}
json