/ServiceGraph
http://xray.{region}.amazonaws.com/ServiceGraphRetrieves a document that describes services that process incoming requests, and downstream services that they call as a result. Root services process incoming requests and make calls to downstream services. Root services are applications that use the <a href="https://docs.aws.amazon.com/xray/index.html">Amazon Web Services X-Ray SDK</a>. Downstream services can be other applications, Amazon Web Services resources, HTTP web APIs, or SQL databases.
Query Params
Pagination token
Body Params
The end of the timeframe for which to generate a graph.
The Amazon Resource Name (ARN) of a group based on which you want to generate a graph.
The name of a group based on which you want to generate a graph.
Pagination token.
The start of the time frame for which to generate a graph.
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request POST \2 --url 'http://xray.{region}.amazonaws.com/ServiceGraph' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}