Skip to main content
PUT
/
api
/
public
/
deliveries
/
{id}
/
markAsCollected

Mark Delivery as Collected

Records that the customer has collected a specific delivery. Removes it from the pending deliveries list.

Authentication

Requires a valid customer bearer token.

Path Parameters

id
number
required
Numeric identifier of the delivery.

Request Body

No request body required.

Response

Returns a 200 OK on success.

Examples

Mark as collected

PUT /api/public/deliveries/77/markAsCollected
Authorization: Bearer {token}

TypeScript Integration

import endpoints from '@/api/endpoints'

await httpClient.put(endpoints.deliveries.markAsCollected(77))