Skip to main content
POST
/
ach_transfers
/
adjustments
Create ACH adjustment
curl --request POST \
  --url https://api.piriod.com/ach_transfers/adjustments/ \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'x-simple-workspace: <x-simple-workspace>' \
  --data '
{
  "transfer": 123,
  "amount": 123,
  "operation": "add",
  "currency": "<string>",
  "base_amount": 123,
  "base_currency": "<string>",
  "comment": "<string>"
}
'
{
  "transfer": 123,
  "amount": 123,
  "operation": "add",
  "id": 123,
  "currency": "<string>",
  "base_amount": 123,
  "base_currency": "<string>",
  "comment": "<string>",
  "created": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://piriod-d406ac55.mintlify.app/llms.txt

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

Authorizations

Authorization
string
header
required

Use header Authorization: Token <api_token>. API tokens are obtained from the Piriod dashboard.

Headers

x-simple-workspace
string
required

Workspace (account) identifier. Required for every request.

x-piriod-test-mode
boolean
default:false

Whether to operate against test-mode data. Defaults to false.

Body

application/json

Manual adjustment applied to an ACH transfer (e.g. to balance fees).

transfer
integer
required

ACH transfer ID.

amount
number
required
operation
enum<string>
required
Available options:
add,
sub,
exchange
currency
string | null
base_amount
number | null
base_currency
string | null
comment
string | null
Maximum string length: 256

Response

201 - application/json

Adjustment created.

Manual adjustment applied to an ACH transfer (e.g. to balance fees).

transfer
integer
required

ACH transfer ID.

amount
number
required
operation
enum<string>
required
Available options:
add,
sub,
exchange
id
integer
read-only
currency
string | null
base_amount
number | null
base_currency
string | null
comment
string | null
Maximum string length: 256
created
string<date-time>
read-only