Heya!
Just wanted to point out that there’s discrepancy between the OpenAPI bundle definition for v1 Leads endpoint (/leads) (GetLeadsResponse)
According to OpenAPI bundle the GetLeadsResponse.additional_info has following structure:
additional_data:
description: The additional data of the list
type: object
properties:
start:
type: integer
description: Pagination start
limit:
type: integer
description: Items shown per page
more_items_in_collection:
type: boolean
description: If there are more list items in the collection than displayed or not
Instead we get following response from API:
additional_data:
pagination:
limit: ..
start: ..
more_items_in_collection: ...
next_start: ...
Please fix the OpenAPI bundle.