Skip to main content
GET
/
gateway
/
mapping
/
all
Get all mappings
curl --request GET \
  --url https://api.quiva.ai/gateway/mapping/all \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "results": [
      {
        "subject": "ms.gateway.abc123.mapping.get.api.users",
        "path": "/api/users",
        "method": "GET",
        "is_public": true,
        "timeout": 30000,
        "limit": {
          "request": 5000,
          "time": 1000
        },
        "traffic_distribution": {},
        "modified": 1713531894,
        "type": "created"
      },
      {
        "subject": "ms.gateway.def456.mapping.post.api.products",
        "path": "/api/products",
        "method": "POST",
        "is_public": true,
        "timeout": 30000,
        "limit": {
          "request": 5000,
          "time": 1000
        },
        "traffic_distribution": {},
        "modified": 1713532000,
        "type": "created"
      }
    ],
    "results_total": 2
  },
  "metadata": {
    "subject": "gateway.*.mapping.>"
  }
}

Authorizations

Authorization
string
header
required

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

Response

List of mappings retrieved successfully

body
object
metadata
object