Skip to main content
POST
/
v2
/
classification
/
list-summary
List summary
curl --request POST \
  --url https://product-api.thedatacity.com/api/v2/classification/list-summary \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "companyNumbers": [
    "10958787"
  ],
  "containsKeyword": "",
  "doesNotContainsKeyword": "",
  "returnCount": 20
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json

Full shape is under Schema; example is minimal.

companyNumbers
string[]
required

JSON body for POST list-summary (v2 and legacy rtics path).

containsKeyword
string
required
doesNotContainsKeyword
string
required
returnCount
integer

Response

200 - application/json

List summary from the product API.

JSON object returned from the upstream product API with no extra shaping by this gateway. Exact properties depend on the operation. Fields may be omitted when the token lacks optional scopes (see config/api.php scope_field_map).

Last modified on June 8, 2026