Skip to main content

Leave workspace

DELETE 

/orgs/:orgId/workspaces/:workspaceId/participants

Removes the requesting user from the given workspace.

Request

Path Parameters

    orgId int64required

    Organization numeric identifier

    workspaceId int64required

    Workspace numeric identifier

Responses

OK - No content

Authorization: http

name: BearerAuthtype: httpscheme: bearerbearerFormat: jwt
import http.client

conn = http.client.HTTPSConnection("docs.seqera.io")
payload = ''
headers = {
'Authorization': 'Bearer <token>'
}
conn.request("DELETE", "/orgs/:orgId/workspaces/:workspaceId/participants", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Auth
Parameters
— pathrequired
— pathrequired