Properties
| Name | Type | Description |
|---|---|---|
| Enterprises | array | The filtered enterprises. |
| Cursor | string | Unique identifier of the last and hence oldest enterprise returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation) in a subsequent re |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EnterpriseResult",
"title": "EnterpriseResult",
"required": [
"Enterprises"
],
"type": "object",
"properties": {
"Enterprises": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EnterprisePortfolio"
},
"description": "The filtered enterprises."
},
"Cursor": {
"type": "string",
"description": "Unique identifier of the last and hence oldest enterprise returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation) in a subsequent request to fetch the next batch of older enterprises.",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "EnterpriseResult"
}