Queries
Get the details of a API call activity
This request allows us to fetch the details of a API call activity.
- graphql
01query GetApiCall($id: String!) {02 apiCall(id: $id) {03 api_call {04 id05 request {06 endpoint07 headers {08 key09 value10 }11 body12 }13 responses {14 status15 body16 date17 }18 }19 }20}
An example id
for an API call is "9rjfb9qE4pEY".
- json
01{02 "id": "{{API_CALL_ID}}"03}