Delete Zealy Connect for member

This endpoint is used to delete a Zealy Connect for a specific user within a community. The connection is uniquely identified by the combination of the user, community, and redirect URL.

Deletes Zealy Connect for a member

DELETEhttps://api-v2.zealy.io/public/communities/{subdomain}/users/{userId}/zealy_connect
Path parameters
subdomain*string
userId*string (uuid)
Query parameters
Header parameters
Response

204

Request
const response = await fetch('https://api-v2.zealy.io/public/communities/{subdomain}/users/{userId}/zealy_connect', {
    method: 'DELETE',
    headers: {
      "x-api-key": "text"
    },
});
const data = await response.json();
Response
{
  "message": "text",
  "code": "BAD_REQUEST",
  "issues": [
    {
      "message": "text",
      "validation": "text",
      "code": "text",
      "location": "text",
      "path": [
        "text"
      ]
    }
  ]
}

Last updated