TenderTransaction
Each tender transaction represents money passing between the merchant and a customer. A tender transaction with a positive amount represents a transaction where the customer paid money to the merchant. A negative amount represents a transaction where the merchant refunded money back to the customer. Tender transactions represent transactions that modify the shop's balance.
What you can do with TenderTransaction
The Shopify API lets you do the following with the TenderTransaction resource. More detailed versions of these general actions may be available:
TenderTransaction properties
id
read-only |
The ID of the transaction. |
order_id
read-only |
The ID of the order that the tender transaction belongs to. |
amount
read-only |
The amount of the tender transaction in the shop's currency. |
currency
read-only |
The three-letter code (ISO 4217 format) for the currency used for the tender transaction. |
user_id
read-only |
The ID of the user logged into the Shopify POS device that processed the tender transaction, if applicable. |
test
read-only |
Whether the tender transaction is a test transaction. |
processed_at
read-only |
The date and time (ISO 8601 format) when the tender transaction was processed. |
remote_reference
read-only |
The remote (gateway) reference associated with the tender. |
payment_details
read-only |
Information about the payment instrument used for this transaction. It has the following properties:
|
payment_method
read-only |
Information about the payment method used for this transaction. Valid values:
|
Endpoints
limit
|
The maximum number of results to retrieve. (default:50 , maximum: 250 )
|
since_id
|
Retrieve only transactions after the specified ID. |
processed_at_min
|
Show tender transactions processed_at or after the specified date. |
processed_at_max
|
Show tender transactions processed_at or before the specified date. |
processed_at
|
Show tender transactions processed at the specified date. |
order
|
Show tender transactions ordered by processed_at in ascending or descending order. |
Retrieve all tender transactions
GET /admin/api/2019-10/tender_transactions.json
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222841,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222840,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions after the specified ID
GET /admin/api/2019-10/tender_transactions.json?since_id=1011222842
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222843,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or after the specified date
GET /admin/api/2019-10/tender_transactions.json?processed_at_min=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222845,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or before the specified date
GET /admin/api/2019-10/tender_transactions.json?processed_at_max=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222846,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at the specified date
GET /admin/api/2019-10/tender_transactions.json?processed_at_max=2005-08-05 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222848,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions ordered by processed_at
GET /admin/api/2019-10/tender_transactions.json?order=processed_at ASC
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222850,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222851,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Each tender transaction represents money passing between the merchant and a customer. A tender transaction with a positive amount represents a transaction where the customer paid money to the merchant. A negative amount represents a transaction where the merchant refunded money back to the customer. Tender transactions represent transactions that modify the shop's balance.
What you can do with TenderTransaction
The Shopify API lets you do the following with the TenderTransaction resource. More detailed versions of these general actions may be available:
TenderTransaction properties
id
read-only |
The ID of the transaction. |
order_id
read-only |
The ID of the order that the tender transaction belongs to. |
amount
read-only |
The amount of the tender transaction in the shop's currency. |
currency
read-only |
The three-letter code (ISO 4217 format) for the currency used for the tender transaction. |
user_id
read-only |
The ID of the user logged into the Shopify POS device that processed the tender transaction, if applicable. |
test
read-only |
Whether the tender transaction is a test transaction. |
processed_at
read-only |
The date and time (ISO 8601 format) when the tender transaction was processed. |
remote_reference
read-only |
The remote (gateway) reference associated with the tender. |
payment_details
read-only |
Information about the payment instrument used for this transaction. It has the following properties:
|
payment_method
read-only |
Information about the payment method used for this transaction. Valid values:
|
Endpoints
limit
|
The maximum number of results to retrieve. (default:50 , maximum: 250 )
|
since_id
|
Retrieve only transactions after the specified ID. |
processed_at_min
|
Show tender transactions processed_at or after the specified date. |
processed_at_max
|
Show tender transactions processed_at or before the specified date. |
processed_at
|
Show tender transactions processed at the specified date. |
order
|
Show tender transactions ordered by processed_at in ascending or descending order. |
Retrieve all tender transactions
GET /admin/api/2020-01/tender_transactions.json
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222841,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222840,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions after the specified ID
GET /admin/api/2020-01/tender_transactions.json?since_id=1011222842
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222843,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or after the specified date
GET /admin/api/2020-01/tender_transactions.json?processed_at_min=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222845,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or before the specified date
GET /admin/api/2020-01/tender_transactions.json?processed_at_max=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222846,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at the specified date
GET /admin/api/2020-01/tender_transactions.json?processed_at_max=2005-08-05 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222848,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions ordered by processed_at
GET /admin/api/2020-01/tender_transactions.json?order=processed_at ASC
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222850,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222851,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Each tender transaction represents money passing between the merchant and a customer. A tender transaction with a positive amount represents a transaction where the customer paid money to the merchant. A negative amount represents a transaction where the merchant refunded money back to the customer. Tender transactions represent transactions that modify the shop's balance.
What you can do with TenderTransaction
The Shopify API lets you do the following with the TenderTransaction resource. More detailed versions of these general actions may be available:
TenderTransaction properties
id
read-only |
The ID of the transaction. |
order_id
read-only |
The ID of the order that the tender transaction belongs to. |
amount
read-only |
The amount of the tender transaction in the shop's currency. |
currency
read-only |
The three-letter code (ISO 4217 format) for the currency used for the tender transaction. |
user_id
read-only |
The ID of the user logged into the Shopify POS device that processed the tender transaction, if applicable. |
test
read-only |
Whether the tender transaction is a test transaction. |
processed_at
read-only |
The date and time (ISO 8601 format) when the tender transaction was processed. |
remote_reference
read-only |
The remote (gateway) reference associated with the tender. |
payment_details
read-only |
Information about the payment instrument used for this transaction. It has the following properties:
|
payment_method
read-only |
Information about the payment method used for this transaction. Valid values:
|
Endpoints
limit
|
The maximum number of results to retrieve. (default:50 , maximum: 250 )
|
since_id
|
Retrieve only transactions after the specified ID. |
processed_at_min
|
Show tender transactions processed_at or after the specified date. |
processed_at_max
|
Show tender transactions processed_at or before the specified date. |
processed_at
|
Show tender transactions processed at the specified date. |
order
|
Show tender transactions ordered by processed_at in ascending or descending order. |
Retrieve all tender transactions
GET /admin/api/2020-04/tender_transactions.json
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222841,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222840,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions after the specified ID
GET /admin/api/2020-04/tender_transactions.json?since_id=1011222842
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222843,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or after the specified date
GET /admin/api/2020-04/tender_transactions.json?processed_at_min=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222845,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or before the specified date
GET /admin/api/2020-04/tender_transactions.json?processed_at_max=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222846,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at the specified date
GET /admin/api/2020-04/tender_transactions.json?processed_at_max=2005-08-05 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222848,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions ordered by processed_at
GET /admin/api/2020-04/tender_transactions.json?order=processed_at ASC
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222850,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222851,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Each tender transaction represents money passing between the merchant and a customer. A tender transaction with a positive amount represents a transaction where the customer paid money to the merchant. A negative amount represents a transaction where the merchant refunded money back to the customer. Tender transactions represent transactions that modify the shop's balance.
What you can do with TenderTransaction
The Shopify API lets you do the following with the TenderTransaction resource. More detailed versions of these general actions may be available:
TenderTransaction properties
id
read-only |
The ID of the transaction. |
order_id
read-only |
The ID of the order that the tender transaction belongs to. |
amount
read-only |
The amount of the tender transaction in the shop's currency. |
currency
read-only |
The three-letter code (ISO 4217 format) for the currency used for the tender transaction. |
user_id
read-only |
The ID of the user logged into the Shopify POS device that processed the tender transaction, if applicable. |
test
read-only |
Whether the tender transaction is a test transaction. |
processed_at
read-only |
The date and time (ISO 8601 format) when the tender transaction was processed. |
remote_reference
read-only |
The remote (gateway) reference associated with the tender. |
payment_details
read-only |
Information about the payment instrument used for this transaction. It has the following properties:
|
payment_method
read-only |
Information about the payment method used for this transaction. Valid values:
|
Endpoints
limit
|
The maximum number of results to retrieve. (default:50 , maximum: 250 )
|
since_id
|
Retrieve only transactions after the specified ID. |
processed_at_min
|
Show tender transactions processed_at or after the specified date. |
processed_at_max
|
Show tender transactions processed_at or before the specified date. |
processed_at
|
Show tender transactions processed at the specified date. |
order
|
Show tender transactions ordered by processed_at in ascending or descending order. |
Retrieve all tender transactions
GET /admin/api/2020-07/tender_transactions.json
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222841,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222840,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions after the specified ID
GET /admin/api/2020-07/tender_transactions.json?since_id=1011222842
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222843,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or after the specified date
GET /admin/api/2020-07/tender_transactions.json?processed_at_min=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222845,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or before the specified date
GET /admin/api/2020-07/tender_transactions.json?processed_at_max=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222846,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at the specified date
GET /admin/api/2020-07/tender_transactions.json?processed_at_max=2005-08-05 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222848,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions ordered by processed_at
GET /admin/api/2020-07/tender_transactions.json?order=processed_at ASC
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222850,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222851,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Each tender transaction represents money passing between the merchant and a customer. A tender transaction with a positive amount represents a transaction where the customer paid money to the merchant. A negative amount represents a transaction where the merchant refunded money back to the customer. Tender transactions represent transactions that modify the shop's balance.
What you can do with TenderTransaction
The Shopify API lets you do the following with the TenderTransaction resource. More detailed versions of these general actions may be available:
TenderTransaction properties
id
read-only |
The ID of the transaction. |
order_id
read-only |
The ID of the order that the tender transaction belongs to. |
amount
read-only |
The amount of the tender transaction in the shop's currency. |
currency
read-only |
The three-letter code (ISO 4217 format) for the currency used for the tender transaction. |
user_id
read-only |
The ID of the user logged into the Shopify POS device that processed the tender transaction, if applicable. |
test
read-only |
Whether the tender transaction is a test transaction. |
processed_at
read-only |
The date and time (ISO 8601 format) when the tender transaction was processed. |
remote_reference
read-only |
The remote (gateway) reference associated with the tender. |
payment_details
read-only |
Information about the payment instrument used for this transaction. It has the following properties:
|
payment_method
read-only |
Information about the payment method used for this transaction. Valid values:
|
Endpoints
limit
|
The maximum number of results to retrieve. (default:50 , maximum: 250 )
|
since_id
|
Retrieve only transactions after the specified ID. |
processed_at_min
|
Show tender transactions processed_at or after the specified date. |
processed_at_max
|
Show tender transactions processed_at or before the specified date. |
processed_at
|
Show tender transactions processed at the specified date. |
order
|
Show tender transactions ordered by processed_at in ascending or descending order. |
Retrieve all tender transactions
GET /admin/api/2020-10/tender_transactions.json
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222841,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222840,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions after the specified ID
GET /admin/api/2020-10/tender_transactions.json?since_id=1011222842
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222843,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or after the specified date
GET /admin/api/2020-10/tender_transactions.json?processed_at_min=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222845,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or before the specified date
GET /admin/api/2020-10/tender_transactions.json?processed_at_max=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222846,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at the specified date
GET /admin/api/2020-10/tender_transactions.json?processed_at_max=2005-08-05 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222848,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions ordered by processed_at
GET /admin/api/2020-10/tender_transactions.json?order=processed_at ASC
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222850,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222851,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Each tender transaction represents money passing between the merchant and a customer. A tender transaction with a positive amount represents a transaction where the customer paid money to the merchant. A negative amount represents a transaction where the merchant refunded money back to the customer. Tender transactions represent transactions that modify the shop's balance.
What you can do with TenderTransaction
The Shopify API lets you do the following with the TenderTransaction resource. More detailed versions of these general actions may be available:
TenderTransaction properties
id
read-only |
The ID of the transaction. |
order_id
read-only |
The ID of the order that the tender transaction belongs to. |
amount
read-only |
The amount of the tender transaction in the shop's currency. |
currency
read-only |
The three-letter code (ISO 4217 format) for the currency used for the tender transaction. |
user_id
read-only |
The ID of the user logged into the Shopify POS device that processed the tender transaction, if applicable. |
test
read-only |
Whether the tender transaction is a test transaction. |
processed_at
read-only |
The date and time (ISO 8601 format) when the tender transaction was processed. |
remote_reference
read-only |
The remote (gateway) reference associated with the tender. |
payment_details
read-only |
Information about the payment instrument used for this transaction. It has the following properties:
|
payment_method
read-only |
Information about the payment method used for this transaction. Valid values:
|
Endpoints
limit
|
The maximum number of results to retrieve. (default:50 , maximum: 250 )
|
since_id
|
Retrieve only transactions after the specified ID. |
processed_at_min
|
Show tender transactions processed_at or after the specified date. |
processed_at_max
|
Show tender transactions processed_at or before the specified date. |
processed_at
|
Show tender transactions processed at the specified date. |
order
|
Show tender transactions ordered by processed_at in ascending or descending order. |
Retrieve all tender transactions
GET /admin/api/2021-01/tender_transactions.json
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222841,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222840,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions after the specified ID
GET /admin/api/2021-01/tender_transactions.json?since_id=1011222842
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222843,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or after the specified date
GET /admin/api/2021-01/tender_transactions.json?processed_at_min=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222845,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or before the specified date
GET /admin/api/2021-01/tender_transactions.json?processed_at_max=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222846,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at the specified date
GET /admin/api/2021-01/tender_transactions.json?processed_at_max=2005-08-05 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222848,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions ordered by processed_at
GET /admin/api/2021-01/tender_transactions.json?order=processed_at ASC
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222850,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222851,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Each tender transaction represents money passing between the merchant and a customer. A tender transaction with a positive amount represents a transaction where the customer paid money to the merchant. A negative amount represents a transaction where the merchant refunded money back to the customer. Tender transactions represent transactions that modify the shop's balance.
What you can do with TenderTransaction
The Shopify API lets you do the following with the TenderTransaction resource. More detailed versions of these general actions may be available:
TenderTransaction properties
id
read-only |
The ID of the transaction. |
order_id
read-only |
The ID of the order that the tender transaction belongs to. |
amount
read-only |
The amount of the tender transaction in the shop's currency. |
currency
read-only |
The three-letter code (ISO 4217 format) for the currency used for the tender transaction. |
user_id
read-only |
The ID of the user logged into the Shopify POS device that processed the tender transaction, if applicable. |
test
read-only |
Whether the tender transaction is a test transaction. |
processed_at
read-only |
The date and time (ISO 8601 format) when the tender transaction was processed. |
remote_reference
read-only |
The remote (gateway) reference associated with the tender. |
payment_details
read-only |
Information about the payment instrument used for this transaction. It has the following properties:
|
payment_method
read-only |
Information about the payment method used for this transaction. Valid values:
|
Endpoints
limit
|
The maximum number of results to retrieve. (default:50 , maximum: 250 )
|
since_id
|
Retrieve only transactions after the specified ID. |
processed_at_min
|
Show tender transactions processed_at or after the specified date. |
processed_at_max
|
Show tender transactions processed_at or before the specified date. |
processed_at
|
Show tender transactions processed at the specified date. |
order
|
Show tender transactions ordered by processed_at in ascending or descending order. |
Retrieve all tender transactions
GET /admin/api/2021-04/tender_transactions.json
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222841,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222840,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions after the specified ID
GET /admin/api/2021-04/tender_transactions.json?since_id=1011222842
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222843,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or after the specified date
GET /admin/api/2021-04/tender_transactions.json?processed_at_min=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222845,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or before the specified date
GET /admin/api/2021-04/tender_transactions.json?processed_at_max=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222846,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at the specified date
GET /admin/api/2021-04/tender_transactions.json?processed_at_max=2005-08-05 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222848,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions ordered by processed_at
GET /admin/api/2021-04/tender_transactions.json?order=processed_at ASC
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222850,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222851,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Each tender transaction represents money passing between the merchant and a customer. A tender transaction with a positive amount represents a transaction where the customer paid money to the merchant. A negative amount represents a transaction where the merchant refunded money back to the customer. Tender transactions represent transactions that modify the shop's balance.
What you can do with TenderTransaction
The Shopify API lets you do the following with the TenderTransaction resource. More detailed versions of these general actions may be available:
TenderTransaction properties
id
read-only |
The ID of the transaction. |
order_id
read-only |
The ID of the order that the tender transaction belongs to. |
amount
read-only |
The amount of the tender transaction in the shop's currency. |
currency
read-only |
The three-letter code (ISO 4217 format) for the currency used for the tender transaction. |
user_id
read-only |
The ID of the user logged into the Shopify POS device that processed the tender transaction, if applicable. |
test
read-only |
Whether the tender transaction is a test transaction. |
processed_at
read-only |
The date and time (ISO 8601 format) when the tender transaction was processed. |
remote_reference
read-only |
The remote (gateway) reference associated with the tender. |
payment_details
read-only |
Information about the payment instrument used for this transaction. It has the following properties:
|
payment_method
read-only |
Information about the payment method used for this transaction. Valid values:
|
Endpoints
limit
|
The maximum number of results to retrieve. (default:50 , maximum: 250 )
|
since_id
|
Retrieve only transactions after the specified ID. |
processed_at_min
|
Show tender transactions processed_at or after the specified date. |
processed_at_max
|
Show tender transactions processed_at or before the specified date. |
processed_at
|
Show tender transactions processed at the specified date. |
order
|
Show tender transactions ordered by processed_at in ascending or descending order. |
Retrieve all tender transactions
GET /admin/api/unstable/tender_transactions.json
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222841,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222840,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions after the specified ID
GET /admin/api/unstable/tender_transactions.json?since_id=1011222842
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222843,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or after the specified date
GET /admin/api/unstable/tender_transactions.json?processed_at_min=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222845,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at or before the specified date
GET /admin/api/unstable/tender_transactions.json?processed_at_max=2005-08-06 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222846,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions processed_at the specified date
GET /admin/api/unstable/tender_transactions.json?processed_at_max=2005-08-05 10:22:51 -0400
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222848,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}
Retrieve tender transactions ordered by processed_at
GET /admin/api/unstable/tender_transactions.json?order=processed_at ASC
View Response
HTTP/1.1 200 OK
{
"tender_transactions": [
{
"id": 1011222850,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-05T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
},
{
"id": 1011222851,
"order_id": 450789469,
"amount": "250.94",
"currency": "USD",
"user_id": null,
"test": false,
"processed_at": "2005-08-07T10:22:51-04:00",
"remote_reference": "authorization-key",
"payment_details": {
"credit_card_number": "•••• •••• •••• 4242",
"credit_card_company": "Visa"
},
"payment_method": "unknown"
}
]
}