GSC POD API

Stop

Stop Sync

Accepts a stop with the route and stop ID, and a list of products containing product IDs and counted/scanned amounts.

Status: Complete

Endpoint: https://pod.dev.gscserver.com/api/route/stop

Method: PUT

Content-Type: application/json


Headers:

{
	"employee_id": 17376,
	"api_token": "jd73ks7fl3bd8cne"
}
					

Body:

{
	"route_id": "7122",
	"stop_id": 103,
	"products": [
		{
			"id": "9001",
			"registered": 976
		},
		{
			"id": "9006",
			"registered": 0
		}
	]
}
					

Result:

{
	"success": true,
	"message": "2 of 2 products updated.",
	"data": null
}