The GraphQL Admin API is an alternative to the REST API and gives you a lot more flexibility to access, create and modify all aspects of your product's data.
Getting started
The GraphQL Endpoint
The GraphQL Admin API has a single endpoint:
POST https://adminapi.mementopayments.com/v1/graphql.json
Example query
query {
users {
id
first_name
last_name
funding_sources {
id
balances {
currency {
code
}
amount_in
}
}
}
}
A successful query results in a response like this: