Object Token Examples
You can reference objects within ChargeOver by their token value instead of the *_id value.
You can get objects from ChargeOver by
tokeninstead of using thecustomer_id,item_id, etc.When adding or updating objects, you can reference other objects by
*_tokeninstead of their*_idvalues
API EXAMPLES
// Get a customer with token = 0q7fx5652k18
GET /api/v3/customer/token:0q7fx5652k18
// Add an invoice for the customer with token = 0q7fx5652k18
POST /api/v3/invoice
{
"customer_token": "0q7fx5652k18",
... other invoice data here ...
}