Skip to main content

Void an invoice

POST 

https://example.chargeover.com/api/v3/invoice/:invoice_id/_action/void

Voiding an invoice effectively makes the total due/balance zero, and will halt all dunning attempts/payments against this invoice.

Request

Body

    object

Responses

Action completed successfully

Schema

    code integer
    status string
    message stringnullable
    details objectnullable
    response boolean

Authorization: http

name: basictype: httpscheme: basic
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
CURLOPT_URL => 'https://example.chargeover.com/api/v3/invoice/:invoice_id/_action/void',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Accept: application/json'
),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
Request Collapse all
Base URL
https://example.chargeover.com
Auth
Body
{}
ResponseClear

Click the Send API Request button above and see the response here!

Leave Us A Message!
EmailMuteEnd Chat
undefined

Sorry we are away! Please leave a full, detailed message and we'll follow up ASAP! Also check out our help center.