Introduction

To modify data using the BaseCMS GraphQL API, you must first login and obtain an authentication token. Each mutation to the API will verify your token and ensure that you have the required permission to modify the fields you change.

Logging in

To obtain an access token, send a GraphQL query to the login mutation:

mutation Login($input: UserLoginMutationInput!) {
  login(input: $input) {
    value
    expires
  }
}

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

To access protected data or write data to Base 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.

Last updated