Properties
| Name | Type | Description |
|---|---|---|
| acceptedBy | string | The unique identifier of the user that accepted the Terms of Service. |
| acceptedFor | string | The unique identifier of the legal entity for which the Terms of Service are accepted. |
| createdAt | string | The date when the Terms of Service were accepted. |
| id | string | An Adyen-generated reference for the accepted Terms of Service. |
| type | string | The type of Terms of Service. Possible values: * **adyenForPlatformsManage** * **adyenIssuing** * **adyenForPlatformsAdvanced** * **adyenCapital** * **adyenAccount** * **adyenCard** * **adyenFranchise |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TermsOfServiceAcceptanceInfo",
"title": "TermsOfServiceAcceptanceInfo",
"properties": {
"acceptedBy": {
"description": "The unique identifier of the user that accepted the Terms of Service.",
"type": "string"
},
"acceptedFor": {
"description": "The unique identifier of the legal entity for which the Terms of Service are accepted.",
"type": "string"
},
"createdAt": {
"description": "The date when the Terms of Service were accepted.",
"format": "date-time",
"type": "string"
},
"id": {
"description": "An Adyen-generated reference for the accepted Terms of Service.",
"type": "string"
},
"type": {
"description": "The type of Terms of Service.\n\nPossible values:\n* **adyenForPlatformsManage**\n* **adyenIssuing**\n* **adyenForPlatformsAdvanced**\n* **adyenCapital**\n* **adyenAccount**\n* **adyenCard**\n* **adyenFranchisee**\n\n",
"enum": [
"adyenAccount",
"adyenCapital",
"adyenCard",
"adyenForPlatformsAdvanced",
"adyenForPlatformsManage",
"adyenFranchisee",
"adyenIssuing"
],
"type": "string"
}
},
"type": "object"
}