Skip to content

Payments

Updated: Dec 4, 2025

Use the Payments endpoint to obtain additional financial details for a specific order.

Get Order Payments

An order can have multiple shipments where each shipment corresponds to one payment. In future we may have one payment for multiple shipments.

Fetch all payment details for a given order.

curl -X GET -G \
  -d 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/<ORDER_ID>/payments

Request

AttributeTypeDescription
fieldsid, subtotal, tax, tax_remitted, total_amount, shipments, transaction_detailsReturns specified fields

Response

AttributeTypeDescription
dataarray of payment_details

payment_details object

AttributeTypeDescription
dataarray of payment_info

payment_info object

AttributeTypeDescription
idstringID of the payment for the order
subtotalsubtotalSubtotal amounts on the order
taxcurrency_amountTax amount charged on the order
tax_remittedbooleantrue if taxes are collected by Facebook
total_amountcurrency_amountTotal amount charged in this payment
shipmentsshipmentsShipment associated with this payment
transaction_detailstransaction_detailsOptional. Details of successful transactions associated with this payment. This field is missing in the case of failed payment capture, and orders without this field cannot be refunded.

subtotal object

AttributeTypeDescription
itemscurrency_amountAmount of the item associated with this payment.
shippingcurrency_amountWe prorate shipping based on the shipping profile. For example, if the seller ships 1 item, then the 2nd item. Example 1 - The shipping is USD 5 base cost, then USD 1 per additional item. We will charge $5 shipping on first shipment, $1 on second shipment Example 2 - shipping is $6 flat cost. We will charge $6 shipping on first shipment, $0 on second shipment

shipments object

AttributeTypeDescription
dataarray of shipment_infoEach shipment will correspond to one payment so today this is an array with one element only. In future we may add multiple shipments to one payment.

shipment_info object

AttributeTypeDescription
idstringFacebook shipment ID
external_shipment_idstringID representing the shipment in your database. This ID can be used to perform updates on tracking info set on a shipment. Optional but recommended.

transaction_details object

AttributeTypeDescription
dataarray of transaction_detail

transaction_detail object

AttributeTypeDescription
transaction_typestringType of transaction. Allowed values are: SALE or REFUND.
transaction_datestringOrder's latest update datetime in ISO 8601 format⁠.
transfer_idstring
processing_feecurrency_amountProcessing fee
net_payment_amountcurrency_amountNet payment amount
tax_ratestringPercentage tax rate
tax_detailsarray of tax_detailsTax details object
payout_reference_idstringThe bank reference ID associated with the payout in which this transaction is included. Note: only available for payouts processed after 5/15/19.

tax_details object

AttributeTypeDescription
dataarray of tax_detail

tax_detail object

AttributeTypeDescription
tax_categorystring
jurisdictionstring
impositionstring
item_tax_ratestring
item_tax_amountcurrency_amount

currency_amount object

AttributeTypeDescription
amountstringAmount in decimal format, eg. "5.5".
currencystringThree digit ISO-4217-3 code for the purchase, e.g. USD.

Sample Response

{  
  "data": [  
    {  
      "id": "2381232183",  
      "subtotal": {  
        "items": {  
          "amount": "40.00",  
          "currency": "USD"  
        },  
        "shipping": {  
          "amount": "0.00",  
          "currency": "USD"  
        }  
      },  
      "tax": {  
        "amount": "0.06",  
        "currency": "USD"  
      },  
      "tax_remitted": true,  
      "total_amount": {  
        "amount": "44.06",  
        "currency": "USD"  
      },  
      "shipments": {  
        "data": [  
          {  
            "id": "2121312213",  
            "external_shipment_id": "shopify-shipment-1"  
          },  
          {  
            "id": "2121312213",  
            "external_shipment_id": "shopify-shipment-2"  
          }  
        ]  
      },  
      "transaction_details": {  
        "data": [  
          {  
            "transaction_type": "SALE",  
            "transaction_date": "2019-01-03T09:16:21+00:00",  
            "transfer_id": "po_1DqSkwFN7vzsfPbcs4aFsknN",  
            "processing_fee": {  
              "amount": "-0.33",  
              "currency": "USD"  
            },  
            "net_payment_amount": {  
              "amount": "0.67",  
              "currency": "USD"  
            }  
          },  
          {  
            "transaction_type": "REFUND",  
            "transaction_date": "2019-01-09T06:18:50+00:00",  
            "processing_fee": {  
              "amount": "0.33",  
              "currency": "USD"  
            },  
            "net_payment_amount": {  
              "amount": "-0.67",  
              "currency": "USD"  
            },  
            "tax_rate": "8.25%",  
            "tax_details": {  
              "data": [  
                {  
                  "tax_category": "FBMP_OTHER_TAXABLE",  
                  "jurisdiction": "CALIFORNIA",  
                  "imposition": "Sales and Use Tax",  
                  "item_tax_rate": "6%",  
                  "item_tax_amount": {  
                    "amount": "0.06",  
                    "currency": "USD"  
                  }  
                },  
                {  
                  "tax_category": "FBMP_OTHER_TAXABLE",  
                  "jurisdiction": "ALAMEDA",  
                  "imposition": "Local Sales and Use Tax",  
                  "item_tax_rate": "1.25%",  
                  "item_tax_amount": {  
                    "amount": "0.01",  
                    "currency": "USD"  
                  }  
                }, // and more  
              ]  
            }  
          }  
        ]  
      }  
    }  
  ],  
  "paging": {  
    "cursors": {  
      "before": "--sanitized_key--",  
      "after": "--sanitized_key--"  
    }  
  }  
}

Learn More

Promotions

Unofficial mirror for reference/search purposes. All content originates from developers.facebook.com — see the source link at the top of each page. Machine-readable indexes: llms.txt · llms-full.txt · About