Trigger billing tab run

Manually trigger billogram creation for a specific billing tab, instead of waiting for its scheduled billing date.

The run is processed asynchronously; a 202 response confirms it was accepted.

Path Parameters
  • customer_no
    Type: integer
    min:  
    1
    required

    Customer number.

    • Must be numeric (digits only)
  • billing_tab_id
    Type: string Format: uuid
    required

    Billing tab identifier (UUID).

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for post/customer/{customer_no}/billing-tab/{billing_tab_id}/run
curl https://sandbox.billogram.com/api/v2/customer/1/billing-tab/550e8400-e29b-41d4-a716-446655440000/run \
  --request POST \
  --header 'Authorization: Basic username:password'
{
  "status": "OK",
  "data": {
    "status": "accepted"
  }
}