Skip to main content

User

This endpoint allows you to access user account information.

GET/api/v1/user/info/

Get information about the currently authenticated user

Example Request

curl -X GET https://api.axro.com/api/v1/user/info/ \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Example Response

{
"email": "user@example.com",
"customer": {
"company": "Example Corp"
},
"billing_address": {
"company": "Example Corp",
"department": "Purchasing",
"street": "123 Main St",
"zip": "10001",
"city": "New York",
"country": "US"
}
}