Skip to main content
DELETE
/
v1
/
orgs
/
{org_id}
/
members
/
{user_id}
Remove a member from an organization
curl --request DELETE \
  --url https://api.arklow.io/v1/orgs/{org_id}/members/{user_id} \
  --header 'x-arklow-auth: <api-key>'
{
  "data": {
    "id": "<string>",
    "org_id": "<string>",
    "user_id": "<string>",
    "permissions": [
      "owner"
    ],
    "email": "<string>"
  },
  "errors": [
    {
      "code": "<string>",
      "message": "<string>"
    }
  ]
}

Authorizations

x-arklow-auth
string
header
required

Path Parameters

org_id
string
required

Organization identifier

Pattern: ^[0-9]+$
user_id
string
required

User identifier of the member

Pattern: ^[0-9]+$

Response

200 - application/json

Default Response

data
object
required
errors
object[] | null
required