Introduction

To query data using the NativeX GraphQL API, you must first login and obtain an authentication token. Each query to the API will verify your token and ensure that you have the required permission to access the data you request.

Logging In

To obtain an access token, use the loginUser GraphQL mutation:

mutation loginUser($input: LoginInput!) {
  loginUser(input: $input) {
    session {
      token
      exp
    }
  }
}

This will return a JSON payload with your access token (data.loginUser.session.token), and the expiration date when your credentials will no longer be valid. The expiration date is a UNIX timestamp.

To access protected data using the API, you must include a valid access token with your request. Send this token as a Bearer-type Authorization header with any request that needs to be authenticated.

curl -X POST https://example.native-x.parameter1.com/graph \
  -H 'authorization: Bearer <mytoken>' \
  -H 'content-type: application/json' \
  -d '{"query":"query { allUsers { totalCount } }"}'
# Response: { "data": { "allUsers": { "totalCount": 17 } } }

Last updated