Skip to main content
POST
/
payment-intents
List Nest Payment Intents
curl --request POST \
  --url https://nestvet.com/api/1.1/wf/payment-intents \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "organization": "<string>",
  "limit": 123,
  "offset": 123,
  "id": "<string>",
  "subscription_id": "<string>",
  "pet_id": "<string>",
  "created_at_since": "2023-11-07T05:31:56Z",
  "updated_at_since": "2023-11-07T05:31:56Z"
}
'
[
  {
    "id": "<string>",
    "clinic": "<string>",
    "clinic_id": "<string>",
    "pet": "<string>",
    "subscription": "<string>",
    "payment_amount": 123,
    "scheduled_date": "<string>",
    "captured_date": "<string>",
    "paid": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

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
id
string
subscription_id
string
pet_id
string
created_at_since
string<date-time>
updated_at_since
string<date-time>

Response

200 - application/json

A list of payment intents

id
string
clinic
string
clinic_id
string
pet
string
subscription
string
payment_amount
number<double>
scheduled_date
string
captured_date
string | null
paid
boolean
created_at
string<date-time>
updated_at
string<date-time>