Verifone · Schema
InternalAllocatedInformation
Internally allocated identifiers. This is for verifone use only and is subject to change.
PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel
Properties
| Name | Type | Description |
|---|---|---|
| oracleOrderNumber | number | The order number which Oracle allocated as part of the order. |
| oracleShippingTrackingReference | string | The order shipping reference which Oracle allocated as part of the order. |
| kycReportUid | string | KYC report generated for this order. |
| tokenScopeUid | string | Token scope generated for this order. |
| extendedDetails | object | |
| orderStats | object | |
| vmssApplication | object | |
| salesforceApplicationId | string | The Application ID allocated by Salesforce. |
| signingInformation | object | |
| econtractNotificationReminder | object | E-Contract Notification Reminder Sent Details. |
| draftNotificationReminder | object | Draft Notification Reminder Sent Details. |
| notificationReminders | object | A container for all supported notification reminders. |
| customerOrderLink | object | Details of Customer Order Link. |
| cancellationHistory | array | List of cancellation records for the customer order. |
| externalOnboarding | object | External merchant onboarding details |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/order-service-api-internalallocatedinformation.json",
"title": "InternalAllocatedInformation",
"description": "Internally allocated identifiers. This is for verifone use only and is subject to change.",
"type": "object",
"properties": {
"oracleOrderNumber": {
"description": "The order number which Oracle allocated as part of the order.",
"type": "number"
},
"oracleShippingTrackingReference": {
"description": "The order shipping reference which Oracle allocated as part of the order.",
"type": "string"
},
"kycReportUid": {
"description": "KYC report generated for this order.",
"type": "string",
"format": "uuid"
},
"tokenScopeUid": {
"description": "Token scope generated for this order.",
"type": "string",
"format": "uuid"
},
"extendedDetails": {
"$ref": "#/components/schemas/ExtendedDetails"
},
"orderStats": {
"$ref": "#/components/schemas/OrderStats"
},
"vmssApplication": {
"$ref": "#/components/schemas/VmssApplication"
},
"salesforceApplicationId": {
"description": "The Application ID allocated by Salesforce.",
"type": "string"
},
"signingInformation": {
"$ref": "#/components/schemas/SigningInformation"
},
"econtractNotificationReminder": {
"description": "E-Contract Notification Reminder Sent Details.",
"$ref": "#/components/schemas/NotificationReminder"
},
"draftNotificationReminder": {
"description": "Draft Notification Reminder Sent Details.",
"$ref": "#/components/schemas/NotificationReminder"
},
"notificationReminders": {
"description": "A container for all supported notification reminders.",
"$ref": "#/components/schemas/NotificationReminders"
},
"customerOrderLink": {
"description": "Details of Customer Order Link.",
"$ref": "#/components/schemas/CustomerOrderLink"
},
"cancellationHistory": {
"type": "array",
"description": "List of cancellation records for the customer order.",
"items": {
"$ref": "#/components/schemas/OrderCancellation"
}
},
"externalOnboarding": {
"type": "object",
"description": "External merchant onboarding details",
"$ref": "#/components/schemas/ExternalOnboarding"
}
}
}