OUTCOME · Create intent
What changes
Creates one AUTHORIZATION_REQUIRED intent and immutable commitments. It performs no source validation, reservation, debit, signing, rail submission, confirmation, settlement, refund, or notification.
v2Payments
/api/v2/paymentsPURPOSE + BUSINESS CONTEXT
WHEN THIS CALL IS USEFUL
Call this for a direct business obligation when the payer already knows the payee, amount, currency, purpose, source reference, and intended method and will complete authorization separately.
OUTCOME · Create intent
Creates one AUTHORIZATION_REQUIRED intent and immutable commitments. It performs no source validation, reservation, debit, signing, rail submission, confirmation, settlement, refund, or notification.
WHY IT MATTERS
ISOLATION + AUTHORITY
The payer workspace and actor derive from authentication; neither can be selected in the body. The payee and source are opaque references, and the created record grants no access to either workspace’s wallet or balance.
BEFORE YOU CALL
WHAT TO DO NEXT
AGENT GUIDANCE
The exact deployed parameters, schemas, responses, security requirements, and Hybrid-Chain agent metadata are authoritative at this operation's production OpenAPI JSON Pointer. The readable tables below add integration guidance; the deployed OpenAPI controls if guidance and the machine contract ever differ.
Open the authoritative production contract ↗EXTENDED INTEGRATION GUIDANCE
Examples illustrate integration intent; the referenced OpenAPI operation and component schemas define the executable shape.
PARAMETERS
AuthorizationheaderRequiredBearer tokenCredential containing payments:write authority.EXAMPLEBearer hc_live_…
Idempotency-KeyheaderRequiredASCII string · 1–128Caller-generated stable key reused for retries of the same logical mutation.EXAMPLEpost-api-v2-payments-request-001
X-Request-IDheaderOptionalstringOptional caller correlation identifier. The gateway emits the effective value on the response.
Content-DigestheaderRequiredstringRFC 9530 sha-256 digest of the exact transmitted request-body bytes.
Signature-InputheaderRequiredstringRFC 9421 sig1 input covering @method, @path, content-digest, content-type, and idempotency-key, with created, expires, nonce, keyid, and alg=ed25519.
SignatureheaderRequiredstringRFC 9421 sig1 Ed25519 signature made by an active key registered to the bearer client.
amountbodyRequiredpositive exact decimal stringPositive amount with no more than 18 decimal places.EXAMPLE125.50
currencybodyRequireduppercase asset or ISO currency codeUppercase asset or ISO currency code. It is validated as part of the request body before any operation is attempted.EXAMPLEUSDC
external_referencebodyOptionalstring · max 128 · nullableOptional caller-owned reconciliation reference, limited to 128 characters.Explicit null acceptedEXAMPLEinvoice-2026-0042
memobodyOptionalstring · max 500 · nullableOptional recipient-visible memo, limited to 500 characters.Explicit null acceptedEXAMPLEInvoice 2026-0042
payee_workspace_idbodyRequiredworkspace identifierRecipient workspace resolved by Payments; it cannot equal the payer workspace.EXAMPLEworkspace-payee
payment_methodbodyRequiredINTERNAL_BALANCE | HYBRID_WALLET | APPROVED_RAILFuture authorization path; intent creation does not invoke it.EXAMPLEHYBRID_WALLET
payment_source_referencebodyRequiredowner-safe funding or operational-wallet referenceOpaque source reference resolved by Payments; never submit credentials or custody secrets.EXAMPLEwallet-operating
purpose_codebodyRequireduppercase identifierStructured accounting/compliance purpose code. It is validated as part of the request body before any operation is attempted.EXAMPLEINVOICE
REQUEST
{
"amount": "100.00",
"currency": "USD",
"external_reference": "example-external-reference",
"memo": "example-memo",
"payee_workspace_id": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
"payment_method": "example-payment-method",
"payment_source_reference": "example-payment-source-reference",
"purpose_code": "example-purpose-code"
}RESPONSES
{
"amount": "100.00",
"authorization_required": true,
"balance_mutation_performed": true,
"cancellation_reason_code": "example-cancellation-reason-code",
"cancelled_at": "2026-09-02T18:30:00Z",
"created_at": "2026-09-02T18:30:00Z",
"currency": "USD",
"external_reference": "example-external-reference",
"memo": "example-memo",
"payee_workspace_id": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
"payer_workspace_id": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
"payment_method": "example-payment-method",
"payment_request_uuid": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
"payment_source_reference": "example-payment-source-reference",
"payment_uuid": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
"purpose_code": "example-purpose-code",
"rail_submission_created": true,
"reconciliation_required": true,
"request_commitment": "example-request-commitment",
"reservation_created": true,
"settlement_authority_granted": true,
"state_commitment": "example-state-commitment",
"status": "example-status",
"updated_at": "2026-09-02T18:30:00Z",
"version": 0
}{
"code": "invalid_credentials",
"message": "the supplied Hybrid credential is invalid"
}invalid_credentials{
"code": "invalid_credentials",
"message": "the supplied Hybrid credential is invalid"
}invalid_credentials{
"code": "invalid_credentials",
"message": "the supplied Hybrid credential is invalid"
}invalid_credentials{
"code": "invalid_credentials",
"message": "the supplied Hybrid credential is invalid"
}invalid_credentials{
"code": "invalid_credentials",
"message": "the supplied Hybrid credential is invalid"
}invalid_credentials{
"code": "invalid_credentials",
"message": "the supplied Hybrid credential is invalid"
}invalid_credentialsOPERATIONAL NOTES
This route is implemented in canonical gateway source and appears in the production OpenAPI snapshot observed 2026-09-11T06:35:11.572Z. Authentication, tenant, feature, venue, and market policy still apply.
Verify the exact production OpenAPI operation ↗Return to the V2 directory ↗