Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion components/grid-visualizer/src/lib/code-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,9 @@ export function generateSteps(
accountId: 'ExternalAccount:<external_account_id>',
},
amount: 100,
remittanceInformation: 'INV-12345',
},
note: `Amount is in the smallest unit of ${source.code} (e.g., cents for USD).`,
note: `Amount is in the smallest unit of ${source.code} (e.g., cents for USD). The remittanceInformation field (max 80 chars) is optional — it carries a reference that travels with the payment to the recipient.`,
});

return steps;
Expand Down
7 changes: 6 additions & 1 deletion mintlify/payouts-and-b2b/payment-flow/send-payment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,19 @@ curl -X POST 'https://api.lightspark.com/grid/2025-10-13/transfer-out' \
"accountId": "ExternalAccount:e85dcbd6-dced-4ec4-b756-3c3a9ea3d965",
"paymentRail": "ACH"
},
"amount": 12550
"amount": 12550,
"remittanceInformation": "INV-12345"
}'
```

<Tip>
The `paymentRail` field is optional. If omitted, Grid selects a default rail for the destination. Specify a rail (e.g., `ACH`, `WIRE`, `RTP`, `FEDNOW`) when you need to control which payment network processes the transfer.
</Tip>

<Info>
`remittanceInformation` is optional. Use it to send a reference that travels with the payment to the recipient (max 80 characters). This populates the ACH Addenda record, FedNow/RTP remittance information, or wire OBI field depending on the payment rail.
</Info>
Comment thread
greptile-apps[bot] marked this conversation as resolved.


```json Success (201 Created)
{
Expand Down
7 changes: 6 additions & 1 deletion mintlify/snippets/sending/same-currency.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,19 @@ curl -X POST 'https://api.lightspark.com/grid/2025-10-13/transfer-out' \
-d '{
"source": { "accountId": "InternalAccount:a12dcbd6-dced-4ec4-b756-3c3a9ea3d123" },
"destination": { "accountId": "ExternalAccount:e85dcbd6-dced-4ec4-b756-3c3a9ea3d965", "paymentRail": "ACH" },
"amount": 12550
"amount": 12550,
"remittanceInformation": "INV-12345"
}'
```

<Tip>
The `paymentRail` field is optional. If omitted, Grid selects a default rail for the destination.
</Tip>

<Info>
`remittanceInformation` is optional. Use it to send a reference that travels with the payment to the recipient (max 80 characters). This populates the ACH Addenda record, FedNow/RTP remittance information, or wire OBI field depending on the payment rail.
</Info>

```json Success (201 Created)
{
"id": "Transaction:019542f5-b3e7-1d02-0000-000000000015",
Expand Down
Loading