Skip to main content
POST
/
payment-requests
/
{paymentRequestId}
/
fulfill
Fulfill payment request
curl --request POST \
  --url https://api.natural.co/payment-requests/{paymentRequestId}/fulfill \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --data '
{
  "data": {
    "attributes": {
      "paymentSource": {
        "type": "wallet",
        "walletId": "wal_550e8400e29b41d4a716446655440000"
      }
    }
  }
}
'
{
  "data": {
    "type": "paymentRequestFulfillmentSubmitResult",
    "id": "prf_550e8400e29b41d4a716446655440000",
    "attributes": {
      "outcome": "processing"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.natural.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Headers

Idempotency-Key
string
required

Unique key for idempotent request handling. If a request with the same key was already processed, the original response is returned.

X-Agent-ID
string | null

Agent ID (agt_xxx) identifying which agent is making the request.

X-Instance-ID
string | null

Required when X-Agent-ID is present. Session or conversation ID for agent observability.

Maximum string length: 1024

Path Parameters

paymentRequestId
string
required
Pattern: ^prq_[0-9a-f]{32}$

Body

application/json
data
object
required

Response

Successful Response

data
object
required