Mark Orders Verified

The Mark Orders Verified API call can be used to make an order as verified for billing. When verified an order will be added to the client's next invoice, unverified orders are excluded from invoice runs.

Mark Orders Verified is only used when Order Verification Required is active under Account Settings > Account Information in Billing API

Example Request
curl --location --request POST 'https://production.billingapi.co.uk/api/mark-orders-verified' \
--header 'Authorization: Bearer {API_TOKEN}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
    "order_ids": ['{ORDER_ID}','{ORDER_ID}','{ORDER_ID}'],
    "verify_status": true
}'
Example Response
{
    "success": true,
    "charge_count": 9
}