> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Mark Delivery as Collected

> Marks a delivery as collected by the customer.

# 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

<ParamField path="id" type="number" required>
  Numeric identifier of the delivery.
</ParamField>

## Request Body

No request body required.

## Response

Returns a `200 OK` on success.

## Examples

### Mark as collected

```http theme={null}
PUT /api/public/deliveries/77/markAsCollected
Authorization: Bearer {token}
```

## TypeScript Integration

```typescript theme={null}
import endpoints from '@/api/endpoints'

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