curl --request GET \
--url http:localhost:3000/v2/customers/lastNumber \
--header 'x-API-Key: <api-key>'
{
"lastNumber": 123
}
Get the highest customer number currently in use. Used for generating the next customer number.
curl --request GET \
--url http:localhost:3000/v2/customers/lastNumber \
--header 'x-API-Key: <api-key>'
{
"lastNumber": 123
}
Last customer number
The response is of type object
.
Was this page helpful?