Transaction Keys

Read about how to use the Transaction Key.

The Transaction Key is used to specify transactions in requests that are sent to the API. It is returned by in the response to the Store Transaction request.

It can be used with the following requests:

For example, if you want to confirm a transaction, you may use a POST method and an endpoint URL in the following format:

{service_uri}/api/v3/seller/transactions/{key}/confirm

Where:

  • {service_uri} is the service's URI.
  • {key} is the Transaction Key. It represents the specific transaction that you want to perform the request on.

Here is an example with a sample Transaction Key (PJyj7WQAAAAYTSOvTCmQLpBvs7KRe1lL6v3GSnQ):

curl --request POST \
  --url https://seller-transaction-api.sandbox.marketplace.taxamo.com/api/v3/seller/transactions/PJyj7WQAAAAYTSOvTCmQLpBvs7KRe1lL6v3GSnQ/confirm \
  --header 'content-type: application/json' \
  --header "x-marketplace-seller-token: $TOKEN" \
  --data '{}'