deleteorganization

description

Deletes a Buzzy Organization

parameters

The X-Auth-Token and X-User-Id are derived from the values authToken and userId returned from the login endpoint and are used in the HTTP header.

{
        "organizationID": "<organization ID to delete>"
}

response

Returns the status of the deletion operation.

example

POST /api/deleteorganization 
X-Auth-Token:<insert token here>
X-User-Id:<insert user id here>

{
        "organizationID": "<organization ID to delete>"
}

You should get back:

{
    "status": "success"
}

Last updated