Create expectations Run in API Explorer
Ask AI
Bulk action create expectations for incoming statement transactions. Useful when a provider statement has historic transactions which Plannr has not generated the expectations for. The client and policy for this transactions must exist within Plannr.
POST
/api/v1/statement-transaction/create-expectations
curl \
--request POST 'https://api.plannrcrm.com/api/v1/statement-transaction/create-expectations' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"statement_transactions":["f937c750-306c-4010-8e88-acf19b6dfbcd","0a6742fb-a790-4cb2-86eb-42cbc3639345","4b8b4bbb-c7e0-4d4b-9943-aa6c46d35b37"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"statement_transactions": [
"f937c750-306c-4010-8e88-acf19b6dfbcd",
"0a6742fb-a790-4cb2-86eb-42cbc3639345",
"4b8b4bbb-c7e0-4d4b-9943-aa6c46d35b37"
]
}
Response examples (204)
{}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}