The GraphQL reporting API enables advertisers and publishers to access reporting data from the Tapjoy platform. Within the GraphQL reporting API you can find advertiser user cases within the marketing API section here, and the publishers use cases within the publisher API examples here.
To access the Marketing or Publisher API, you'll first need your API key. As an Ad Dashboard user, you can find this key at https://dashboard.tapjoy.com/reporting/api.
If instead you use the LTV Platform, you will need the "Marketing API Key", which can be found on the LTV Platform. This key can be found by selecting an App -> Settings -> App Settings -> App Info -> API Keys -> Marketing API Key.
Requests are authenticated using a standard two-legged OAuth2 flow. An access token is requested using the API Key and the resulting access token is used to authenticate against future requests.
You can find a guide on retrieving an access token here.
The API has a single endpoint:
https://api.tapjoy.com/graphql
The endpoint remains the same regardless of the operation being performed.
Once you have an access token, requests can be made to the API. To form a request for the API, a JSON-encoded body is provided via an HTTP POST regardless of whether you're executing a query or mutation.
Example Request:
POST /graphql
Host: api.tapjoy.com
Authorization: Bearer <OAuth Token>
{
"query": "query { user { firstName } }"
}
There are several categories of errors that can be encountered when using the API:
To ensure that your system is properly integrated, you will need to consider how your system should handle each of these categories of errors.
Each category described below will use the following query for context:
query {
user {
firstName
lastName
}
}
Occasionally you may encounter unrecoverable server / network errors with the API. In these cases, you will receive the proper http status code for the scenario you're encountering. For example, if there is problem in our API preventing queries from executing, then you'll receive an HTTP response with a 500 status code.
The best way to handle this scenario is to employ a retry behavior with exponential back-off.
Authentication / authorization errors can occur for a few reasons:
In these types of situations, you'll receive a HTTP 200 OK response with the following data:
{
"errors": [
{
"message": "Authentication could not be verified. Please try again later.",
"code": 403
}
]
}
message
- A human-readable description of the errorcode
- A GraphQL status code that corresponds to HTTP status codesThe best way to handle this scenario is to request a new access token and retry the request.
All queries and mutations are verified upfront that they are syntactically correct and follow the described data schema. If the provided query does not pass all schema validations, then you'll receive a HTTP 200 OK response with the following data:
{
"errors": [
{
"message": "Field 'user' doesn't exist on type 'Query'",
"locations": [
{
"line": 2,
"column": 3
}
],
"fields": [
"query",
"user"
]
}
]
}
message
- A human-readable description of the errorlocations
- The locations of the syntax errorfields
- The fields affect by the syntax errorThe best way to handle this scenario is to refer to the API documentation and test your query in the Interactive Explorer.
Although you may provide a mutation that is properly constructed with all of the required fields, it can still fail due to business validations. For example, let's say you're an advertiser changing a bid to below the minimum for your AdSet like so:
mutation {
updateAdSet(input: {
id: "00000000-0000-0000-0000-000000000000",
bidding: {amount: 10000}
}) {
adSet {
id
}
}
}
In that scenario, you'll receive a HTTP 200 OK response with the following data:
{
"data": {
"updateAdSet": null
},
"errors": [
{
"message": "Amount is below the minimum (20000 micros)",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"updateAdSet",
"input",
"bidding",
"amount"
],
"code": 422
}
]
}
message
- A human-readable description of the errorlocations
- The locations of the validation errorpath
- A fully-qualified reference to the field that was determined to be invalidcode
- A GraphQL status code that corresponds to HTTP status codesThe best way to handle this scenario is to present the error message alongside the corresponding field (via the path) to the user.