Endpoints generales
Token info
Empezando
- Introducción
- Autenticación
- Endpoints generales
Endpoints generales
Token info
GET
/
api
/
me
curl --request GET \
--url https://api.service.getjusto.com/v3/api/me
{
"success": true,
"data": {
"permissions": [
"admin"
],
"website": {
"_id": "<string>",
"name": "Orion Burger",
"url": "<string>",
"countryCode": "CL",
"timezone": "America/Santiago",
"logoURL": "https://cdn.getjusto.com/images/website/logo.png"
},
"stores": [
{
"_id": "<string>",
"name": "Providencia",
"timezone": "America/Santiago"
}
]
}
}
Response
200
application/json
The OpenAPI spec
The response is of type object
.
curl --request GET \
--url https://api.service.getjusto.com/v3/api/me
{
"success": true,
"data": {
"permissions": [
"admin"
],
"website": {
"_id": "<string>",
"name": "Orion Burger",
"url": "<string>",
"countryCode": "CL",
"timezone": "America/Santiago",
"logoURL": "https://cdn.getjusto.com/images/website/logo.png"
},
"stores": [
{
"_id": "<string>",
"name": "Providencia",
"timezone": "America/Santiago"
}
]
}
}