The amount being charged for a particular transaction. If other amount fields are sent, they must be included in the total amount. Amount cannot be zero.
Shift4 Payment API (1.7.43)
https://api.shift4test.com/api/rest/v1/
https://api.shift4api.net/api/rest/v1/
Request
Used to check for various processing rules such as surcharge eligibility.
Integration Methods:
- Host Direct
See the Integration Methods and URLs Section sections of the Development Quick Start guide for details regarding each processing option.
See the JSON Body Schemas for more details on the various JSON body formats.
Refers to the version of the program or application that is sending requests to Shift4. The following special characters are not allowed: $ % : ^ - ~ < > , ? “ ” ‘ ’ { } [ ] \ + =
Refers to the name of the program or application that is sending requests to Shift4. This should be the name of the program that you purchased or created. The following special characters are not allowed: $ % : ^ - ~ ` < > , ? “ ” ‘ ’ { } [ ] \ + =
Refers to the vendor or partner that designed and certified the interface. The information you use in this field should match what Shift4 has on file or what was agreed upon in your Integration Plan. The following special characters are not allowed: $ % : ^ - ~ ` < > , ? “ ” ‘ ’ { } [ ] \ + =
A security credential used to authenticate API requests and all i4Go® authorizeClient/preauthorizeClient requests. An Access Token is the alias for the merchant account and interface being used. The Access Token is required in all requests except an Access Token Exchange request, which generates an Access Token using an authToken
and clientGuid
.
- GTV Token
- P2PE - ID TECH - EMV/MSR/Manual
- P2PE - TDES DUKPT - EMV
- P2PE - TDES DUKPT - MSR/Manual
- P2PE - On-Guard SDE - EMV
- P2PE - On-Guard SDE - MSR/Manual
- Unencrypted Card
The date and time in ISO 8601 format including the timezone offset (yyyy-mm-ddThh:mm:ss.nnn+hh:mm).
Must be sent as the local date/time of the merchant. For example, a request processed at a merchant in the Pacific time zone at 9:18am on April 15th 2021 would be sent as 2021-04-15T09:18:23.283-07:00
Object containing information regarding the amount being requested. The total
field within the object is required and specifies the amount being requested.
Note: For merchants that are configured to allow multiple currencies, the amount fields can specify up to three decimal places. However, the number of decimal places can not exceed the number allowed for the specified currency. See the Currency Codes section for details.
Specifies which rule checks are being requested:
Value | Description |
---|---|
SURCHARGE | Checks to see if a card is eligible for surcharging. If eligible the surcharge object will be returned containing the surcharge percentage that can be applied. |
10-digit invoice number assigned by the interface to identify a transaction. An invoice number serves as a unique key that identifies a transaction within a batch in Shift4's Gateway.
Note: For US and Canadian processing: Although the invoice number is sent as a JSON string it is a numeric value. No alpha characters are allowed.
For processing outside of the US and Canada alpha characters are allowed.
This field is used to specify a card token. Whenever CHD is sent in a request, a card token will be returned in this field. Your interface should be designed to store this card token for future use. The latest card token received should be used in any subsequent request that references the same card data.
Conditional: Send only when card data is manually entered or when using a token. This field should not be specified when using an encrypted device.
Card expiration date in MMYY format. This value should only be populated in the initial sale/authorization request.
- Host Direct Test URL
https://api.shift4test.com/api/rest/v1/rules/verify
- Host Direct Production URL
https://api.shift4api.net/api/rest/v1/rules/verify
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
{ "dateTime": "2024-05-21T09:18:23.283-07:00", "amount": { "total": 160 }, "ruleCheck": [ "SURCHARGE" ], "transaction": { "invoice": "0510093358", "vendorReference": "12382-01" }, "card": { "expirationDate": 1230, "token": { "value": "8048471746471119" } }, "clerk": { "numericId": 1576 } }
{ "result": [ { "dateTime": "2024-05-21T09:18:23.283-07:00", "amount": { "total": 163.2, "surcharge": 3.2 }, "card": { "number": "XXXXXXXXXXXX1119", "token": { … }, "type": "VS" }, "surcharge": { "result": "P", "transactionId": "string", "percentage": 2 }, "transaction": { "invoice": "0510093358", "vendorReference": "12382-01" }, "merchant": { "mid": 15877, "name": "Merchant XYZ" }, "server": { "name": "TM01CE" } } ] }