Parsing point id
Before sending selected point id from Paxy widget to Paxy it is required to sanitize it. You should sanitize it using the following endpoint:
- Method:
POST
- Url:
https://iai-bridge.paxy.pl/api/v1/paxyWidget/parsePointId
- Authentication required as in - header field
token
filled with token given by Paxy. - JSON body format
Example:
https://iai-bridge.paxy.pl/api/v1/paxyWidget/parsePointId
Body:
{
"id": "venipaklt_pickup_123123fdf"
}
Response:
{
"body": {
"id": "123123fdf",
"pointType": "pickup",
"courier": "wedo"
}
}