Fetch current user
How to retrieve data of the user making API Calls
To retrieve information about the user holding the API token used, you should use the following query:
query {
me {
id
name
email
phone
cpf
cnpj
birthday
subscription {
has_premium_features
documents
credits
}
organization {
id
uuid
name
cnpj
}
}
}This is an example of a request you can make, and you can choose which data you want to receive or not. A more detailed documentation about all possible fields is available in Altair.
Expected respose
Last updated
Was this helpful?