Balance partially reconciled expectations
Headers
-
Content-Type string
-
Accept string
Body
-
expectation_uuids array[string]
Array of expectation UUIDs to balance.
-
statement_transaction_uuids array[string]
Array of statement transactions UUIDs which will balance all expectations which are linked to transactions.
POST /api/v1/expectation/balance
curl \
-X POST https://api.plannrcrm.com/api/v1/expectation/balance \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"expectation_uuids":[null,null],"statement_transaction_uuids":[null,null]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"expectation_uuids": [
null,
null
],
"statement_transaction_uuids": [
null,
null
]
}