Skip to main content
POST
/
psp-payments
List Stripe Payment Intents
curl --request POST \
  --url https://nestvet.com/api/1.1/wf/psp-payments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "organization": "<string>",
  "limit": 123,
  "offset": 123,
  "clinic": "<string>",
  "starting_after": "<string>",
  "created_since": 123
}
'
{
  "data": [
    {
      "id": "<string>",
      "object": "payment_intent",
      "amount": 123,
      "amount_capturable": 123,
      "amount_details": {
        "tip": {}
      },
      "amount_received": 123,
      "application": "<string>",
      "application_fee_amount": 123,
      "automatic_payment_methods": {
        "enabled": true
      },
      "canceled_at": 123,
      "cancellation_reason": "<string>",
      "capture_method": "<string>",
      "client_secret": "<string>",
      "confirmation_method": "<string>",
      "created": 123,
      "currency": "<string>",
      "customer": "<string>",
      "description": "<string>",
      "invoice": "<string>",
      "latest_charge": "<string>",
      "livemode": true,
      "metadata": {},
      "payment_method": "<string>",
      "payment_method_options": {
        "card": {
          "installments": "<unknown>",
          "mandate_options": "<unknown>",
          "network": "<unknown>",
          "request_three_d_secure": "<string>"
        }
      },
      "payment_method_types": [
        "<string>"
      ],
      "processing": "<unknown>",
      "setup_future_usage": "<string>",
      "shipping": "<unknown>",
      "status": "<string>"
    }
  ],
  "has_more": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
organization
string
required
limit
integer<int32>
required
offset
integer<int32>
required
clinic
string
starting_after
string
created_since
integer<int64>

Unix timestamp

Response

200 - application/json

Stripe payment intents response

data
object[]
has_more
boolean