Delete a participant from the system

DELETE /participants/{id}

Permanently removes a participant's data from the system based on their unique ID.

Path parameters

  • id integer(int64) Required

    Unique ID of the participant to be deleted.

Responses

  • 200

    Participant successfully deleted from the system.

  • 401

    Authorization failed. Ensure the X-Client-Key sent is valid and active.

  • 403

    Invalid or inactive client. The API key may be incorrect, expired, or your account does not have permission.

  • 404

    Participant data with the given ID was not found and thus cannot be deleted.

  • 500

    An internal server error occurred. Please try again shortly or contact support.

DELETE /participants/{id}
curl \
 --request DELETE 'https://sandbox.indolat.com/api/v1/participants/{id}' \
 --header "X-Client-Key: $API_KEY"