By default, the CertCapture API uses our internal ID's for Customer identifiers.
/v2/customers/1Where 1 will be our internal ID of Customer 1.
If you wish you use the customer_number, simply provide the additional header:
x-customer-primary-key: customer_numberNOTE: if you wish to search for vendors NOT customers, simply provide this header:
x-customer-primary-key: vendor_numberThen you can access the customer end points like so:
/v2/customers/123abcNOTE: Since we support all utf8 characters in the customer_number, the customer_number MUST be sent url encoded. For example:
/v2/customers/123/abcWill cause a 'Customer Not Found' error.
/v2/customers/123%2FabcWill find the Customer with customer_number = 123/abc