Payments app request reference
This guide provides a comprehensive reference for the HTTP POST requests that initiate actions taken by your Payments app. The action flows begins with an HTTP POST request sent from Shopify to your payments app extension. Each request is different depending on the action flow you are trying to configure.
Anchor to Offsite paymentOffsite payment
The offsite payment flow begins with an HTTP POST request sent from Shopify to the payment session URL of your offsite payments app extension provided during app extension configuration. This request contains information about the customer and the order.
Start session
Request header
Request body
Response body
Shopify must receive an HTTP 2xx response with redirect_url (URL for the Partner page where Shopify redirects the customer) for the payment session creation to be successful. The redirect_url response should be less than 8192 bytes in length.
If the request fails, then it's retried several times. If the request still fails, then the customer needs to retry their payment through Shopify checkout.
If there's an error on the payments app's side, then don't respond with an HTTP 2xx. Use an appropriate error status code instead.
Anchor to Request headersRequest headers
| Header | Description |
|---|---|
Shopify-Shop-Domainrequired | The permanent domain of the shop. Can be used to identify which shop is initiating the request. |
Shopify-Request-Idrequired | The unique request ID used to track specific requests for troubleshooting purposes. |
Shopify-Api-Versionrequired | The API version selected in the payments app configuration. The version selected defines the response expected by the payments app. |
Anchor to Request bodyRequest body
| Attribute | Description | Type |
|---|---|---|
idrequired | Unique identifier for the payment attempt. Used as the idempotency key. It can be assumed that requests with a given ID are identical to any previously received requests with the same ID. This ID must be surfaced to the merchant so that they can correlate Shopify orders with payments managed by the Partner app. | String |
gidrequired | Identifies the payment when communicating with Shopify (in GraphQL mutations, for example). | String |
grouprequired | The identifier that's shared across payment sessions, representing attempts to complete the same checkout or deferred payment capture. | String |
session_idrequired | The identifier that's shared across payment sessions that belong to the same payment group, buyer session, and share payment details. Only available in API version 2024-10 and later. | String |
amountrequired | The amount to be charged. The value is always sent using a decimal point as a separator, regardless of locale. | String |
currencyrequired | Three-letter ISO 4217 currency code. | String |
testrequired | Indicates whether the payment is in test or live mode. Refer to Test mode for more information. | Boolean |
merchant_localerequired | IETF BCP 47 language tag representing the language used by the merchant. | String |
payment_methodrequired | Hash giving details on the payment method used. Refer to payment_method hash for more information. | Hash |
proposed_atrequired | Can be used to order payment attempts that are a part of the same group. | String (ISO-8601) |
customer | If customer is included, then at least one of customer.email or customer.phone_number present. For more information on the customer field, refer to the customer hash. | Hash |
kindrequired | Either sale or authorization. If you support payment authorization, then this value is set based on the merchant's configuration. If you don't support separate authorization and capture, then the value is always sale. For sale transactions, you need to capture the funds instantly with this request. For authorization transactions, you must place a hold on the funds and capture them later when Shopify sends a capture request. | String |
Shopify doesn't include an order ID in the payment session request. Instead, merchants can use the payment's id attribute to search for the corresponding order in the Shopify admin. The payment ID also appears in order data that's exported from the Shopify admin, in the exported CSV's Payment References column.
Anchor to [object Object], hashpayment_method hash
payment_method hash| Attribute | Description | Type |
|---|---|---|
typerequired | The type of payment method. Possible values: []. | String |
datarequired | Contains data relevant for the chosen payment method. Refer to payment_method.data hash for more information. | Hash |
Anchor to [object Object], hashpayment_method.data hash
payment_method.data hash| Attribute | Description | Type |
|---|---|---|
cancel_urlrequired | The URL to redirect the customer when the customer quits the payment flow and returns to the merchant's website. The cancel_url attribute should only be used when a customer is on the provider page and decides to cancel their payment and return to Shopify. | String |
Anchor to [object Object], hashcustomer hash
customer hash| Attribute | Description | Type |
|---|---|---|
email | The email of the customer. Required if phone_number isn't present. | String |
phone_number | The phone number of the customer. Required if email isn't present. | String |
localerequired | The language code as an ISO 639-1 string and the country code as an ISO 3166-1 Alpha-2 string, if available. For more information on the locale field, refer to the locale fields changelog. | String |
billing_address | The billing address of the customer. Refer to shipping/billing_address hash for more information. | Hash |
shipping_addressrequired* | The shipping address for the order. Refer to shipping/billing_address hash for more information. *A shipping address isn't sent for digital products. | Hash |
Anchor to [object Object], hashshipping/billing_address hash
shipping/billing_address hash| Attribute | Description | Type |
|---|---|---|
given_name | The given name or first name of the customer. | String |
family_namerequired | The surname of the customer. | String |
line1required | First line of the customer's address (for example, the street or PO box). | String |
line2 | Second line of the customer's address (for example, the apartment or suite). | String |
cityrequired | Name of city or town. | String |
postal_code | Zip or postal code. | String |
province | Name of the province or state. | String |
province_code | The province or state code as an ISO 3166-1 Alpha-2 string. | String |
country_coderequired | The country code as an ISO 3166-1 Alpha-2 string. | String |
phone_number | The phone number of the customer. | String |
company | Name of company. | String |
The given_name, line2, postal_code, province, province_code and company fields are optional, depending on the customer's locality.
Anchor to Credit card paymentCredit card payment
The credit card payment flow begins with an HTTP POST request sent from Shopify to the payment session URL of your credit card payments app extension provided during app extension configuration. This request contains information about the customer and the order, and, for 3-D Secure, client details.
Start session
Request header
Request body
API version 2024-07
{ "id": "u0nwmSrNntjIWozmNslK5Tlq", "gid": "gid://shopify/PaymentSession/u0nwmSrNntjIWozmNslK5Tlq", "group": "rZNvy+1jH6Z+BcPqA5U5BSIcnUavBha3C63xBalm+xE=", "session_id": "4B2dxmle3vGgimS4deUX3+2PgLF2+/0ZWnNsNSZcgdU=", "amount": "123.00", "currency": "CAD", "test": false, "merchant_locale": "en", "payment_method": { "type": "credit_card", "data": { "fingerprint": "65b1ae1fe49ff9d23d80e4967d9147e64b2357c0b2291f4a8bf719cbde331b4c", "encrypted_message": "<ENCRYPTED_MESSAGE>", "ephemeral_public_key": "<EPHEMERAL_PUBLIC_KEY>", "tag": "TAG", "moto": true } }, "proposed_at": "2020-07-13T00:00:00Z", "customer": { "billing_address": { "given_name": "Alice", "family_name": "Smith", "line1": "123 Street", "line2": "Suite B", "city": "Montreal", "postal_code": "H2Z 0B3", "province": "Quebec", "country_code": "CA", "phone_number": "5555555555", "company": "" }, "shipping_address": { "given_name": "Alice", "family_name": "Smith", "line1": "123 Street", "line2": "Suite B", "city": "Montreal", "postal_code": "H2Z 0B3", "province": "Quebec", "country_code": "CA", "phone_number": "5555555555", "company": "" }, "email": "buyer@example.com", "phone_number": "5555555555", "locale": "fr" }, "kind": "sale" }API version 2024-04 and earlier
{ "id": "u0nwmSrNntjIWozmNslK5Tlq", "gid": "gid://shopify/PaymentSession/u0nwmSrNntjIWozmNslK5Tlq", "group": "rZNvy+1jH6Z+BcPqA5U5BSIcnUavBha3C63xBalm+xE=", "session_id": "4B2dxmle3vGgimS4deUX3+2PgLF2+/0ZWnNsNSZcgdU=", "amount": "123.00", "currency": "CAD", "test": false, "merchant_locale": "en", "payment_method": { "type": "credit_card", "data": { "fingerprint": "65b1ae1fe49ff9d23d80e4967d9147e64b2357c0b2291f4a8bf719cbde331b4c", "encrypted_message": "<ENCRYPTED_MESSAGE>", "ephemeral_public_key": "<EPHEMERAL_PUBLIC_KEY>", "tag": "TAG" } }, "proposed_at": "2020-07-13T00:00:00Z", "customer": { "billing_address": { "given_name": "Alice", "family_name": "Smith", "line1": "123 Street", "line2": "Suite B", "city": "Montreal", "postal_code": "H2Z 0B3", "province": "Quebec", "country_code": "CA", "phone_number": "5555555555", "company": "" }, "shipping_address": { "given_name": "Alice", "family_name": "Smith", "line1": "123 Street", "line2": "Suite B", "city": "Montreal", "postal_code": "H2Z 0B3", "province": "Quebec", "country_code": "CA", "phone_number": "5555555555", "company": "" }, "email": "buyer@example.com", "phone_number": "5555555555", "locale": "fr" }, "kind": "sale" }Credit Card with 3-D Secure
{ "id": "u0nwmSrNntjIWozmNslK5Tlq", "gid": "gid://shopify/PaymentSession/u0nwmSrNntjIWozmNslK5Tlq", "group": "rZNvy+1jH6Z+BcPqA5U5BSIcnUavBha3C63xBalm+xE=", "session_id": "4B2dxmle3vGgimS4deUX3+2PgLF2+/0ZWnNsNSZcgdU=", "amount": "123.00", "currency": "CAD", "test": false, "merchant_locale": "en", "payment_method": { "type": "credit_card", "data": { "fingerprint": "65b1ae1fe49ff9d23d80e4967d9147e64b2357c0b2291f4a8bf719cbde331b4c", "encrypted_message": "<ENCRYPTED_MESSAGE>", "ephemeral_public_key": "<EPHEMERAL_PUBLIC_KEY>", "tag": "TAG", "moto": true } }, "proposed_at": "2020-07-13T00:00:00Z", "customer": { "billing_address": { "given_name": "Alice", "family_name": "Smith", "line1": "123 Street", "line2": "Suite B", "city": "Montreal", "postal_code": "H2Z 0B3", "province": "Quebec", "country_code": "CA", "phone_number": "5555555555", "company": "" }, "shipping_address": { "given_name": "Alice", "family_name": "Smith", "line1": "123 Street", "line2": "Suite B", "city": "Montreal", "postal_code": "H2Z 0B3", "province": "Quebec", "country_code": "CA", "phone_number": "5555555555", "company": "" }, "email": "buyer@example.com", "phone_number": "5555555555", "locale": "fr" }, "kind": "sale", "client_details": { "ip_address": "192.168.0.1", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36", "accept_language":"en-US" } }Response body
Shopify must receive an HTTP 2xx response for the payment session creation to be successful.
If the request fails, then it's retried several times. If the request still fails, then the customer needs to retry their payment through Shopify checkout.
If there's an error on the payments app's side, then don't respond with an HTTP 2xx. Use an appropriate error status code instead.
Anchor to Request headersRequest headers
| Header | Description |
|---|---|
Shopify-Shop-Domainrequired | The permanent domain of the shop. Can be used to identify which shop is initiating the request. |
Shopify-Request-Idrequired | The unique request ID used to track specific requests for troubleshooting purposes. |
Shopify-Api-Versionrequired | The API version selected in the payments app configuration. The version selected defines the response expected by the payments app. |
Anchor to Request bodyRequest body
| Attribute | Description | Type |
|---|---|---|
idrequired | Unique identifier for the payment attempt. Used as the idempotency key. It can be assumed that requests with a given ID are identical to any previously received requests with the same ID. This ID must be surfaced to the merchant so that they can correlate Shopify orders with payments managed by the Partner app. | String |
gidrequired | Identifies the payment when communicating with Shopify (in GraphQL mutations, for example). | String |
grouprequired | The identifier that's shared across payment sessions, representing attempts to complete the same checkout or deferred payment capture. | String |
session_idrequired | The identifier that's shared across payment sessions that belong to the same payment group, buyer session, and share payment details. Only available in API version 2024-10 and later. | String |
amountrequired | The amount to be charged. The value is always sent using a decimal point as a separator, regardless of locale. | String |
currencyrequired | Three-letter ISO 4217 currency code. | String |
testrequired | Indicates whether the payment is in test or live mode. Refer to Test mode for more information. | Boolean |
merchant_localerequired | IETF BCP 47 language tag representing the language used by the merchant. | String |
payment_methodrequired | Hash giving details on the payment method used. Refer to payment_method hash for more information. | Hash |
proposed_atrequired | Can be used to order payment attempts that are a part of the same group. | String (ISO-8601) |
customer | If customer is included, then at least one of customer.email or customer.phone_number present. For more information on the customer field, refer to the customer hash. | Hash |
kindrequired | Either sale or authorization. For sale transactions, you need to capture the funds instantly with this request. For authorization transactions, you must place a hold on the funds and capture them later when Shopify sends a capture request. | String |
client_details | Details about the browser of the customer, if your credit card payments app extension supports the 3-D Secure authentication customer feature. For more information on the client_details field, refer to the client_details hash. | Hash |
Shopify doesn't include an order ID in the payment session request. Instead, merchants can use the payment's id attribute to search for the corresponding order in the Shopify admin. The payment ID also appears in order data that's exported from the Shopify admin, in the exported CSV's Payment References column.
Anchor to [object Object], hashpayment_method hash
payment_method hash| Attribute | Description | Type |
|---|---|---|
typerequired | The type of payment method. Possible values: []. | String |
datarequired | Contains data relevant for the chosen payment method. Refer to payment_method.data hash for more information. | Hash |
Anchor to [object Object], hashpayment_method.data hash
payment_method.data hash| Attribute | Description | Type |
|---|---|---|
fingerprintrequired | The fingerprint of the certificate that’s used to encrypt the credit card information of the customer. | String |
encrypted_messagerequired | The encrypted credit card information of the customer strictly encoded as Base64. Learn how to decrypt encrypted_message and the structure of decrypted data. | String |
ephemeral_public_keyrequired | The ephemeral public key that should be used with the private key to compute the shared secret, and to decrypt encrypted_message . | String |
tagrequired | HMAC digest of the encrypted_message strictly encoded as Base64. | String |
motorequired | Whether the payment is Mail Order/Telephone Order. Only available in API version 2024-07 and later. | Boolean |
Anchor to Decrypt ,[object Object]Decrypt encrypted_message
encrypted_messageThe credit card information of the customer is encrypted using ECIES hybrid encryption scheme. You can follow the following steps to decrypt the credit card information:
- Decode the Base64 encoded
encrypted_messageandtag. - Use
fingerprintto identify the certificate that's used for encryption. - Compute shared secret using the private key of the certificate and
ephemeral_public_key. - Compute the hmac of decoded
encrypted_messageand ensure it matches the decoded value oftag. - Decrypt
encrypted_message.
The application or service that decrypts the value of the encrypted_message must be in a PCI DSS compliant environment.
Example code for decrypting `encrypted_message`
Function
Usage
Returns
API version 2024-04
{ "type": "card", "data": { "full_name": "Percy Parker", "pan": "4242424242424242", "month": 12, "year": 2033, "verification_value": "122" } }API version 2024-07 and later
{ "type": "card", "data": { "full_name": "Percy Parker", "pan": "4242424242424242", "month": 12, "year": 2033, "verification_value": "122", "network": "cartes_bancaires" } }Returned hash in API version 2024-04 and later:
| Attribute | Description | Type |
|---|---|---|
typerequired | The type of card. | String |
datarequired | Contains data relevant to the encrypted message. Refer to encrypted_message_data hash for more information. | Hash |
Anchor to [object Object], hashencrypted_message_data hash
encrypted_message_data hashReturned hash in API version 2024-04:
| Attribute | Description | Type |
|---|---|---|
full_namerequired | The full name of the card holder. | String |
panrequired | The card number used for payment. | String |
monthrequired | The card's month of expiry. | Numeric |
yearrequired | The card's year of expiry. | Numeric |
verification_valuerequired | The card's security code, for example CSC, CVC, CVV. | String |
Returned hash in API version 2024-07 and later:
| Attribute | Description | Type |
|---|---|---|
full_namerequired | The full name of the card holder. | String |
panrequired | The card number used for payment. | String |
monthrequired | The card's month of expiry. | Numeric |
yearrequired | The card's year of expiry. | Numeric |
verification_valuerequired | The card's security code, for example CSC, CVC, CVV. | String |
network | The customer's preferred processing network. In specific circumstances, customers using co-badged cards (for example Visa + Cartes Bancaires cards in the EU) are able to choose which network should be used to process the transaction. If the customer doesn't make a choice, the network field will be omitted. | String |
Anchor to [object Object], hashcustomer hash
customer hash| Attribute | Description | Type |
|---|---|---|
email | The email of the customer. Required if phone_number isn't present. | String |
phone_number | The phone number of the customer. Required if email isn't present. | String |
localerequired | The language code as an ISO 639-1 string and the country code as an ISO 3166-1 Alpha-2 string, if available. For more information on the locale field, refer to the locale fields changelog. | String |
billing_address | The billing address of the customer. Refer to shipping/billing_address hash for more information. | Hash |
shipping_addressrequired* | The shipping address for the order. Refer to shipping/billing_address hash for more information. *A shipping address isn't sent for digital products. | Hash |
Anchor to [object Object], hashshipping/billing_address hash
shipping/billing_address hash| Attribute | Description | Type |
|---|---|---|
given_name | The given name or first name of the customer. | String |
family_namerequired | The surname of the customer. | String |
line1required | First line of the customer's address (for example, the street or PO box). | String |
line2 | Second line of the customer's address (for example, the apartment or suite). | String |
cityrequired | Name of city or town. | String |
postal_code | Zip or postal code. | String |
province | Name of the province or state. | String |
province_code | The province or state code as an ISO 3166-1 Alpha-2 string. | String |
country_coderequired | The country code as an ISO 3166-1 Alpha-2 string. | String |
phone_number | The phone number of the customer. | String |
company | Name of company. | String |
The given_name, line2, postal_code, province, province_code and company fields are optional, depending on the customer's locality.
Anchor to [object Object], hashclient_details hash
client_details hash| Attribute | Description | Type |
|---|---|---|
ip_addressrequired | The IP address from the browser of the customer. | String |
user_agentrequired | The HTTP user-agent header from the browser of the customer. | String |
accept_language | The HTTP accept-language header from the browser of the customer. | String |
Anchor to RefundRefund
The refund flow begins with an HTTP POST request sent from Shopify to the payments app's refund session URL provided during app extension configuration:
Start session
Request header
Request body
Response body
Shopify must receive an HTTP 201 (Created) response for the refund session creation to be successful.
If the request fails, then it's retried several times. If the request still fails, then the user needs to manually retry the refund in the Shopify admin.
Anchor to Request headersRequest headers
| Header | Description |
|---|---|
Shopify-Shop-Domainrequired | The permanent domain of the shop. Can be used to identify which shop is initiating the request. |
Shopify-Request-Idrequired | The unique request ID used to track specific requests for troubleshooting purposes. |
Shopify-Api-Versionrequired | The API version selected in the payments app configuration. The version selected defines the response expected by the payments app. |
Anchor to Request bodyRequest body
| Attribute | Description | Type |
|---|---|---|
idrequired | The unique identifier for the refund attempt. Used as the idempotency key. It can be assumed that requests with a given ID are identical to any previously-received requests with the same ID. | String |
gidrequired | Identifies the refund when communicating with Shopify (in GraphQL mutations, for example). | String |
payment_idrequired | The ID of the original payment that is to be refunded. For captured payments, this ID corresponds to the original authorization ID rather than the capture ID. | String |
amountrequired | The amount to be refunded. The amount is always sent using a decimal point as a separator, regardless of locale. | String |
currencyrequired | Three-letter ISO 4217 currency code. | String |
testrequired | Indicates whether the refund is in test or live mode. The test field is only sent if you select API version 2022-01 or higher in the payments app extension configuration in Shopify CLI. For more information, refer to Test a payments app. | Boolean |
merchant_localerequired | The IETF BCP 47 language tag representing the language used by the merchant. | String |
proposed_atrequired | A timestamp (ISO-8601) representing when the refund request was proposed. | String |
Anchor to CaptureCapture
The capture flow begins with an HTTP POST request sent from Shopify to the payments app's capture session URL provided during app extension configuration:
Start session
Request header
Request body
Response body
Shopify must receive an HTTP 201 (Created) response for the capture session creation to be successful.
If the request fails, then it's retried several times. If the request still fails, then the user needs to manually retry the capture in the Shopify admin.
Anchor to Request headersRequest headers
| Header | Description |
|---|---|
Shopify-Shop-Domainrequired | The permanent domain of the shop. Can be used to identify which shop is initiating the request. |
Shopify-Request-Idrequired | The unique request ID used to track specific requests for troubleshooting purposes. |
Shopify-Api-Versionrequired | The API version selected in the payments app configuration. The version selected defines the response expected by the payments app. |
Anchor to Request bodyRequest body
| Attribute | Description | Type |
|---|---|---|
idrequired | The unique identifier for the capture attempt. Used as the idempotency key. Assume that requests with a given ID are identical to any previously-received requests with the same ID. | String |
gidrequired | Identifies the capture when communicating with Shopify in GraphQL mutations, for example. | String |
payment_idrequired | The ID of the authorized payment that is to be captured. | String |
amountrequired | The amount to be captured. The value is always sent using a decimal point as a separator, regardless of locale. | String |
currencyrequired | The three-letter ISO 4217 currency code. | String |
testrequired | Indicates whether the capture is in test or live mode. The test field is only sent if you select API version 2022-01 or higher in the payments app extension configuration in Shopify CLI. For more information, refer to Test a payments app. | Boolean |
merchant_localerequired | The IETF BCP 47 language tag representing the language used by the merchant. | String |
proposed_atrequired | A timestamp representing when the capture request was proposed. | String (ISO-8601) |
Anchor to VoidVoid
The void flow begins with an HTTP POST request sent from Shopify to the payments app's void session URL provided during app extension configuration:
Start session
Request header
Request body
Response body
Shopify must receive an HTTP 201 (Created) response for the void session creation to be successful.
If the request fails, then it's retried several times. If the request still fails, then the user needs to manually retry the void in the Shopify admin.
Anchor to Request headersRequest headers
| Header | Description |
|---|---|
Shopify-Shop-Domainrequired | The permanent domain of the shop. Can be used to identify which shop is initiating the request. |
Shopify-Request-Idrequired | The unique request ID used to track specific requests for troubleshooting purposes. |
Shopify-Api-Versionrequired | The API version selected in the payments app configuration. The version selected defines the response expected by the payments app. |
Anchor to Request bodyRequest body
| Attribute | Description | Type |
|---|---|---|
idrequired | The unique identifier for the void attempt. Used as the idempotency key. It can be assumed that requests with a given ID are identical to any previously-received requests with the same ID. | String |
gidrequired | Identifies the void when communicating with Shopify (in GraphQL mutations, for example). | String |
payment_idrequired | The ID of the authorized payment that is to be voided. | String |
testrequired | Indicates whether the void is in test or live mode. The test field is only sent if you select API version 2022-01 or higher in the payments app extension configuration in Shopify CLI. For more information, refer to Test a payments app. | Boolean |
merchant_localerequired | The IETF BCP 47 language tag representing the language used by the merchant. | String |
proposed_atrequired | A timestamp (ISO-8601) representing when the void request was proposed. | String |
Anchor to Confirm a payment (3-D Secure and Inventory confirmation)Confirm a payment (3-D Secure and Inventory confirmation)
When Shopify determines if the payment request can proceed, Shopify sends a POST request to the confirm session URL of the credit card payments app extension, delivering the confirmation result.
Anchor to Request headersRequest headers
| Header | Description |
|---|---|
Shopify-Shop-Domainrequired | The permanent domain of the shop. Can be used to identify which shop is initiating the request. |
Shopify-Request-Idrequired | The unique request ID used to track specific requests for troubleshooting purposes. |
Shopify-Api-Versionrequired | The API version selected in the payments app configuration. The version selected defines the response expected by the payments app. |
Anchor to Request bodyRequest body
| Attribute | Description | Type |
|---|---|---|
idrequired | The unique identifier for the payment, as provided in the HTTP POST request sent from Shopify to the payment session URL. Used as the idempotency key. It can be assumed that requests with a given id are identical to any previously received requests with the same id. | |
gidrequired | Identifies the payment when communicating with Shopify (in GraphQL mutations, for example). | String |
confirmation_resultrequired | Result of the payment confirmation initiated by the paymentSessionConfirm mutation. The payment app can proceed with the payment request if and only if confirmation_result is true | Boolean |