Get Started
Document V2
Payment V2
Customer V2
Vendor V2
Product V2
Inventory V2
Subscriptions V2
Utility V2
Customer V2
Update customer mapping
POST
/
v2
/
customer
/
list
Copy
curl --request POST \
--url https://app.getswipe.in/api/partner/v2/customer/list \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"customer_mapping": [
{
"customer_id": "<string>",
"swipe_id": "1",
"force_update": true
}
]
}'
Copy
{
"success": true,
"message": "",
"error_code": "",
"errors": {},
"data": {
"message": "No data found!"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
200
application/json
Updated successfully
The response is of type object
.
Copy
curl --request POST \
--url https://app.getswipe.in/api/partner/v2/customer/list \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"customer_mapping": [
{
"customer_id": "<string>",
"swipe_id": "1",
"force_update": true
}
]
}'
Copy
{
"success": true,
"message": "",
"error_code": "",
"errors": {},
"data": {
"message": "No data found!"
}
}
Assistant
Responses are generated using AI and may contain mistakes.