Awell Health Developer Hub
Developer Hub

This request allows us to fetch the details of a API call activity.

Request

Query

  • graphql
01query GetApiCall($id: String!) {
02 apiCall(id: $id) {
03 api_call {
04 id
05 request {
06 endpoint
07 headers {
08 key
09 value
10 }
11 body
12 }
13 responses {
14 status
15 body
16 date
17 }
18 }
19 }
20}

Variables

An example id for an API call is "9rjfb9qE4pEY".

  • json
01{
02 "id": "{{API_CALL_ID}}"
03}