Delete Supported Lines

Endpoint to delete supported lines

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Delete Supported Lines

Description

This endpoint allows you to delete supported lines for a specific service provider (SP). It requires a JSON payload specifying the lines to be revoked.

HTTP Request

  • Method: DELETE
  • URL: /supported-lines

Headers

  • Authorization: Bearer token required.
key

Include the Bearer prefix before your access token in the Authorization header. For example: Bearer YOUR_ACCESS_TOKEN. Retrieve your access token from the /auth/login endpoint response.

Request Body

  • Content-Type: application/json
  • Schema:
    {
      "supported_lines": [
        "line1",
        "line2"
      ]
    }

Responses

  • 200 OK: The lines were successfully deleted.
    {
      "success": true
    }
  • Default Error: An error occurred.
    {
      "error": "Error message",
      "success": false
    }

Security

  • Requires a valid Token in the request header.

Notes

  • Ensure that the supported_lines array contains valid line identifiers.
  • This operation is irreversible; ensure accuracy before proceeding.
Body Params
supported_lines
array of strings
supported_lines
Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json