Retrieve a checkout.com payment
How to fetch a specific checkout.com payment via API
To fetch a single checkout.com payment, send a GET request to the /api/checkout_com_payments/:id endpoint, where id is the ID of the resource that you want to retrieve.
Request
GET https://yourdomain.commercelayer.io/api/checkout_com_payments/:id
Example
The following request fetches the checkout.com payment identified by the ID "XAyRWNUzyN":
curl -g -X GET \
  'https://yourdomain.commercelayer.io/api/checkout_com_payments/XAyRWNUzyN' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token'On success, the API responds with a 200 OK status code, returning a single resource object:
{
  "data": {
    "id": "XAyRWNUzyN",
    "type": "checkout_com_payments",
    "links": {
      "self": "https://yourdomain.commercelayer.io/api/checkout_com_payments/XAyRWNUzyN"
    },
    "attributes": {
      "public_key": "pk_test_xxxx-yyyy-zzzz",
      "token": "tok_4gzeau5o2uqubbk6fufs3m7p54",
      "payment_session": {
        "id": "ps_xxxx_yyyy_zzzz",
        "payment_session_secret": "pss_xxxx_yyy_zzzz",
        "payment_session_token": "xxxxx_yyyyy_zzzzz",
        "_links": {
          "self": {
            "href": "https://api.sandbox.checkout.com/payment-sessions/ps_xxxx_yyyy_zzzz"
          }
        }
      },
      "success_url": "http://commercelayer.dev/checkout_com/success",
      "failure_url": "http://commercelayer.dev/checkout_com/failure",
      "source_id": "src_nwd3m4in3hkuddfpjsaevunhdy",
      "customer_token": "cus_udst2tfldj6upmye2reztkmm4i",
      "redirect_uri": "https://api.checkout.com/3ds/pay_mbabizu24mvu3mela5njyhpit4",
      "payment_response": {
        "foo": "bar"
      },
      "mismatched_amounts": false,
      "payment_instrument": {
        "issuer": "cl bank",
        "card_type": "visa"
      },
      "created_at": "2018-01-01T12:00:00.000Z",
      "updated_at": "2018-01-01T12:00:00.000Z",
      "reference": "ANY-EXTERNAL-REFEFERNCE",
      "reference_origin": "ANY-EXTERNAL-REFEFERNCE-ORIGIN",
      "metadata": {
        "foo": "bar"
      }
    },
    "relationships": {
      "order": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/checkout_com_payments/XAyRWNUzyN/relationships/order",
          "related": "https://yourdomain.commercelayer.io/api/checkout_com_payments/XAyRWNUzyN/order"
        }
      },
      "payment_gateway": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/checkout_com_payments/XAyRWNUzyN/relationships/payment_gateway",
          "related": "https://yourdomain.commercelayer.io/api/checkout_com_payments/XAyRWNUzyN/payment_gateway"
        }
      },
      "versions": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/checkout_com_payments/XAyRWNUzyN/relationships/versions",
          "related": "https://yourdomain.commercelayer.io/api/checkout_com_payments/XAyRWNUzyN/versions"
        }
      },
      "event_stores": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/checkout_com_payments/XAyRWNUzyN/relationships/event_stores",
          "related": "https://yourdomain.commercelayer.io/api/checkout_com_payments/XAyRWNUzyN/event_stores"
        }
      }
    },
    "meta": {
      "mode": "test",
      "organization_id": "xRRkjDFafe",
      "trace_id": "69abaa3545913c78132e5578bd26208d44aa9043647d78698fd0021f3958cd74"
    }
  }
}Last updated

