Balance partially reconciled expectations

POST /api/v1/expectation/balance

Headers

application/json

Body

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
  ]
}