VTEX · Schema
UpdateAntifraudTransactionsoptionalRequest
CommerceE-CommerceRetailMarketplacePayments
Properties
| Name | Type | Description |
|---|---|---|
| id | string | VTEX transaction ID. The ID of the transaction related with this payment. |
| reference | string | VTEX order reference key. The key of the order (from VTEX Orders system) related with this payment. |
| value | integer | VTEX transaction order value. |
| ip | string | The original IP address from the browser. |
| store | string | VTEX has a main name for the store. This unique name is often used in URL to access VTEX configurations. |
| deviceFingerprint | string | Device fingerprint generated by the provider. This is generated by using Google Tag Manager that the provider implements. |
| miniCart | object | |
| payments | array | Payments information. |
| hook | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateAntifraudTransactionsoptionalRequest",
"title": "UpdateAntifraudTransactionsoptionalRequest",
"required": [
"id",
"reference",
"value",
"ip",
"store",
"deviceFingerprint",
"miniCart",
"payments",
"hook"
],
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "VTEX transaction ID. The ID of the transaction related with this payment.",
"example": "D3AA1FC8372E430E8236649DB5EBD08E"
},
"reference": {
"type": "string",
"description": "VTEX order reference key. The key of the order (from VTEX Orders system) related with this payment.",
"example": "v32478982vtx-01"
},
"value": {
"type": "integer",
"description": "VTEX transaction order value.",
"example": 10
},
"ip": {
"type": "string",
"description": "The original IP address from the browser.",
"example": "10.0.0.1"
},
"store": {
"type": "string",
"description": "VTEX has a main name for the store. This unique name is often used in URL to access VTEX configurations.",
"example": "serasa"
},
"deviceFingerprint": {
"type": "string",
"description": "Device fingerprint generated by the provider. This is generated by using Google Tag Manager that the provider implements.",
"example": "Generated_using_GTM_Store_Is_Responsible_To_Configure"
},
"miniCart": {
"$ref": "#/components/schemas/MiniCart"
},
"payments": {
"type": "array",
"description": "Payments information.",
"items": {
"$ref": "#/components/schemas/Payment"
}
},
"hook": {
"type": "string"
}
}
}