Skip to main content
POST
/
payments
/
card
Push to Card
curl --request POST \
  --url https://sandbox.sturdytechnologies.com/v3/payments/card \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_id": "<string>",
  "address": {
    "city": "<string>",
    "country": "<string>",
    "line_1": "<string>",
    "state": "<string>",
    "zip": "<string>"
  },
  "amount": 123,
  "card_number": "<string>",
  "cvv": "<string>",
  "description": "<string>",
  "expiration_date": "<string>"
}
'
{
  "data": {
    "amount": 123,
    "card_number": "<string>",
    "description": "<string>",
    "transaction_date": "2023-10-01T12:34:56Z",
    "transaction_id": "txn_12345",
    "transaction_status": "processing"
  },
  "message": "<string>",
  "success": true
}

Body

application/json

Push to Card payload

account_id
string
required

Unique Identifier of the US account from which funds will be transferred from (Pass merchant's US account ID if hold_balance is false for Create US Bank Account).

address
object
required

Billing address associated with the card.

amount
number
required
card_number
string
required
cvv
string
required
description
string
required
expiration_date
string
required

Expiration date of the card in MM/YY format.

Response

Created

data
object
message
string
success
boolean