Skip to content

Service: Rejection of User Group Member Invitation

Eliza Margaretha Illig edited this page Aug 20, 2024 · 10 revisions

** WARNING: This service is deprecated starting from Kustvakt version 0.75 and will be completely removed in API v1.1.

Sends a rejection to join a user group.

Available in: full version

Method: DELETE

Service URL: root/group/@{group_name}/unsubscribe

Parameters

Header Parameters

Name Required Description Value
Authorization yes HTTP authentication with scheme: Bearer OAuth2 access token

Path Parameters

Name Required Description Type
group_name yes user-group name String

Examples

Request example with cURL

curl -H 'Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE' 
     http://localhost:8089/api/v1.0/group/@marlin-group/unsubscribe

Request example with Basic authentication (for testing only)

curl -H 'Authorization: Basic bWFybGluOnBhc3N3b3Jk'      
     http://localhost:8089/api/v1.0/group/@marlin-group/unsubscribe
Clone this wiki locally