Skip to main content
DELETE
/
gateway
/
mapping-version
/
{gateway_topic}
/
{version_number}
Delete a mapping version
curl --request DELETE \
  --url https://api.quiva.ai/gateway/mapping-version/{gateway_topic}/{version_number} \
  --header 'Authorization: Bearer <token>'
{
  "message": "success"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

gateway_topic
string
required

Unique topic identifier of the gateway

version_number
integer
required

Sequential version number of the mapping version

Query Parameters

method
enum<string>
required

HTTP method for the mapping in uppercase

Available options:
GET,
POST,
PUT,
DELETE,
PATCH,
OPTIONS,
HEAD
path
string
required

URL path for the mapping including the leading slash

Response

Mapping version marked as deleted successfully

message
string
Example:

"success"