OpenApi
  1. Customers
  • Branches
    • List active branches
      GET
    • Get a branch's service tree
      GET
  • Services
    • Get available appointment slots
      GET
  • Tickets
    • Book a ticket (walk-in or appointment)
      POST
    • Fetch a ticket
      GET
    • Cancel a ticket
      POST
    • Reschedule an appointment
      POST
  • Customers
    • Create a customer
      POST
    • List customers (paginated)
      GET
    • Fetch one customer
      GET
    • Update a customer
      PUT
    • Delete a customer
      DELETE
    • List a customer's tickets
      GET
  • Schemas
    • SuccessEnvelope
    • PaginatedEnvelope
    • ErrorEnvelope
    • ValidationErrorEnvelope
    • AuthErrorEnvelope
    • Pagination
    • Branch
    • BranchTreeGroup
    • Service
    • Slot
    • Ticket
    • Customer
    • CustomerWriteRequest
    • CustomerUpdateRequest
    • BookTicketRequest
    • ChangeTimeRequest
  1. Customers

Delete a customer

DELETE
https://api-dev.skiplino.com/external/v1/customers/delete
Permanently deletes a customer located by id or externalId.
Authentication — Secret key only (sk_…).
Behavioural notes
On success the API returns 200 with data: null (it does not return 204).
An unknown identifier is rejected at validation time with 422.
Deletion is permanent and not reversible. Existing tickets that referenced the
customer are not deleted.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Header Params

Responses

🟢200
application/json
Customer deleted successfully.
Bodyapplication/json

🟠422
🟠401Unauthorized
🔴500ServerError
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://api-dev.skiplino.com/external/v1/customers/delete?id=9f2c8b7a4e1d6c3f0a5b8e2d7c4f1a9b&externalId=crm-7741' \
--header 'X-Locale;' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "message": "Customer deleted successfully.",
    "data": null
}
Previous
Update a customer
Next
List a customer's tickets
Built with