Skip to main content
GET
/
tabs
/
reports
/
tab-evaluations
Evaluaciones de cuentas
curl --request GET \
  --url https://api.service.getjusto.com/v3/tabs/reports/tab-evaluations \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "totals": {
      "count": 123,
      "average": 123
    },
    "evaluations": [
      {
        "_id": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "tabCreatedAt": "2023-11-07T05:31:56Z",
        "tabId": "<string>",
        "countryCode": "<string>",
        "websiteId": "<string>",
        "storeId": "<string>",
        "evaluation": 123,
        "createdById": "<string>",
        "createdByName": "<string>",
        "createdByEmail": "<string>",
        "comments": "<string>",
        "importedFrom": "<string>"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.getjusto.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

fromDate
string<date-time>
required
Example:

"2020-01-01T00:00:00.000Z"

toDate
string<date-time>
required
Example:

"2020-01-01T00:00:00.000Z"

storeId
string
storeIds
string[]
limit
number
deliveryTypes
string[]
sources
string[]

Response

The OpenAPI spec

success
boolean
Example:

true

data
object