v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Catalog Resource Mappings

List Resource Mappings

Returns a paginated collection of catalog resource mappings.

get/v1/resource-mappings

Query parameters

page[size]integer
Example:10

The maximum number of items to include per page. The last page of a collection may include fewer items.

page[number]integer
Example:1

Determines which page of the entities to retrieve.

Filters a collection of resource mappings.

{
  "created_at": {
    "eq": "2022-03-30T07:20:50Z"
  }
}
sortstring

The asc suffix is optional as the default sort order is ascending. The desc suffix is used to specify a descending order. Multiple sort attributes may be provided via a comma separated list. JSONPath notation may be used to specify a sub-attribute (eg: 'foo.bar desc').

Example:created_at desc

Sorts a collection of resource mappings. Supported sort attributes are:

  • created_at

Default sort is created_at in descending order.

Response

A paginated list response for a collection of catalog resource mappings.

Example response

{
  "meta": {
    "page": {
      "number": 1,
      "size": 10,
      "total": 100
    }
  },
  "data": [
    {
      "id": "d277faad-ed4e-4c56-a0fb-acce065dee34",
      "resource": {
        "id": "4UdXnoaDYYJsH_Ir",
        "integration": {
          "name": "gateway-manager",
          "display_name": "gateway-manager",
          "instance": {
            "id": "772b9caf-ddbc-4f4f-8aa4-8dfbbe420351",
            "name": "aws-lambda-prod",
            "display_name": "AWS (prod)"
          }
        },
        "type": "gateway_svc",
        "config": {
          "control_plane_id": "ccadfb0a-56cd-4f74-955d-aec1d87157c8",
          "gateway_service_id": "94896d05-0c4d-45eb-aae3-de754885dd58"
        }
      },
      "service": {
        "id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
        "name": "user-svc",
        "display_name": "User Service"
      },
      "created_at": "2022-11-04T20:10:06.927Z"
    }
  ]
}