HubSpot · Schema
AssociationResult
Association results for an object
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales
Properties
| Name | Type | Description |
|---|---|---|
| results | array | |
| paging | object | Pagination information |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/commerce-payments-api-association-result-schema.json",
"title": "AssociationResult",
"description": "Association results for an object",
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
"example": [
{
"id": "500123",
"type": "standard"
}
]
},
"paging": {
"type": "object",
"description": "Pagination information",
"properties": {
"next": {
"type": "object",
"properties": {
"after": {
"type": "string",
"description": "Cursor for the next page"
},
"link": {
"type": "string",
"description": "Link to the next page"
}
},
"example": {
"after": "example-value",
"link": "https://app.hubspot.com/contacts/12345"
}
},
"prev": {
"type": "object",
"properties": {
"before": {
"type": "string",
"description": "Cursor for the previous page"
},
"link": {
"type": "string",
"description": "Link to the previous page"
}
},
"example": {
"before": "example-value",
"link": "https://app.hubspot.com/contacts/12345"
}
}
}
}
}
}