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
1
query {
2
users {
3
id
4
first_name
5
last_name
6
funding_sources {
7
id
8
balances {
9
currency {
10
code
11
}
12
amount_in
13
}
14
}
15
}
16
}
Copied!
A successful query results in a response like this: