The newest version of this document can be found online at: https://resources.apnet.ch/api/manage/customers
Last modified: 2021-07-12 17:43 ➔ reload
Only for partners with cash registers, member card scanners or input fields for the customer to enter his member number
https://[dev|test|www].pluscash.ch/api/manage/authentication/[api-key]/[partner-id]/
https://dev.pluscash.ch
is our development environment. If you have new / other requirements to this API, then individual features and changes are developed on this environment.
https://test.pluscash.ch
is our testing environment. Please test your implementation to already documented features here.
https://www.pluscash.ch
is the productive environment.
display-post-data
displays the received POST "multipart/form-data" data in form of an array. If you sent the data with type "application/json" and our system was able to read / interpret it it is automatically mapped to the array we would expect with "multipart/form-data". If this array is displayed empty, our system then displays the raw POST input data for you to debug.
as-html
displays the output of display-post-data
as human readable HTML.
[Base-URL]/membernumber/check/[member-number]
Validate the customers member number.
Returned JSON in case of a valid number:
{
"success": true,
"valid": true
}
Returned JSON in case of an invalid number:
{
"success": true,
"valid": false
}
Returned JSON in case of an error:
{
"success": false,
"error": "description of the error occurred"
}