Skip to content
On this page

/auth/{authId}

Deletes an auth and all its items from the account.

HTTP Request

DELETE https://api.q2open.io/v1/auth/{authId}

Arguments

ParameterDescription
authIdID of bill to delete.

Returns

Returns an object with a success property if the auth was deleted. If the authId does not exist, this call returns an error.

Example Request

shell
curl "https://api.q2open.io/v1/auth/566595c8ce88ccec69328566" \
  -H "Authorization: Bearer dc220490-e6ee-11e5-8a94-e7385a8d929e" \
  -X DELETE

Example Response

json
{
  "success": true
}