Service Maps
Get Map Dependencies
Get the dependencies for a previously created Map Dependencies Request. Note: This endpoint returns a single page of results and uses pagination. Even if you specified a large limit in the initial POST request, you will receive up to the page size limit per request and must use the pagination links to retrieve additional results.
get/1/maps/dependencies/requests/{requestId}
Query parameters
page[after]string
The string value of the next attribute from a previous result page. The cursor value must be empty or omitted for the first request of a cursor-paginated query.
page[size]number
The number of entries to include per response. Maximum value is 100.
Response
Success
Example response
{
"request_id": "abc123",
"status": "ready",
"dependencies": [
{
"parent_node": {
"name": "user-service",
"type": "service"
},
"child_node": {
"name": "user-service",
"type": "service"
},
"call_count": 142
}
],
"links": {
"next": "/2/teams/my-team/api-keys?page[after]=3025fa645ad1100d&page[size]=10"
}
}