Skip to main content
GET
/
gateway
/
{gateway_topic}
/
mapping
/
details
Get a specific mapping
curl --request GET \
  --url https://api.quiva.ai/gateway/{gateway_topic}/mapping/details \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "subject": "ms.gateway.abcdef123456.mapping.get.api.users",
    "path": "/api/users",
    "method": "GET",
    "is_public": true,
    "timeout": 30000,
    "limit": {
      "request": 5000,
      "time": 1000
    },
    "traffic_distribution": {
      "1": 100
    },
    "modified": 1713531894,
    "type": "created"
  },
  "metadata": {
    "subject": "ms.gateway.abcdef123456.mapping.get.api.users"
  }
}

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

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 details retrieved successfully

body
object
metadata
object