Delete a customer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://rest-api.developer.24sevenoffice.com/doc/v1/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"v1 MCP server": {
  "url": "https://rest-api.developer.24sevenoffice.com/doc/v1/mcp"
}
Close
DELETE /customers/{customerId}

Delete a specific customer identified by its unique ID.

Headers

  • Authorization string Required

    Authorization header

Path parameters

  • customerId integer(int32) Required

    A unique identifier for the customer within Finago Office CRM.

Responses

  • 204

    Success. No content

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string
    • Access-Control-Allow-Credentials string
    • X-Trace-Id string
  • 401

    Unauthorized. Missing or invalid bearer token.

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string
    • Access-Control-Allow-Credentials string
    • X-Trace-Id string
DELETE /customers/{customerId}
curl \
 --request DELETE 'https://rest.api.24sevenoffice.com/v1/customers/{customerId}' \
 --header "Authorization: string"