# Pickups

{% hint style="info" %}
Add `octo/pickups` to your `OCTO-Capabilities` header to expose this capability
{% endhint %}

{% tabs %}
{% tab title="Products" %}
Adds pickup location data to the products schema

```javascript
{
    //rest of the product schema
    "pickupAvailable": true,
    "pickupRequired": false,
    "pickupPoints": [
        {
            "id": "98765",
            "name": "Hilton Central Park - NYC",
            "latitude": 40.764479,
            "longitude" -73.977597,
            "street": "W 57th Street",
            "postal": "10019",
            "city": "New York City",
            "state": "NY",
            "country": "USA"
        },
        {
            "id": "845373",
            "name": "Park Lane Hotel",
            "latitude": 40.765162,
            "longitude" -73.975113,
            "street": "W 59th Street",
            "postal": "10019",
            "city": "New York City",
            "state": "NY",
            "country": "USA"
        },
    ]
}
```

{% endtab %}

{% tab title="Availability" %}
Adds pickup location data to the availability schema.

```javascript
{
    //rest of the availability schema
    "pickupAvailable": true,
    "pickupRequired": false,
    "pickupPoints": [
        {
            "id": "98765",
            "name": "Hilton Central Park - NYC",
            "latitude": 40.764479,
            "longitude" -73.977597,
            "street": "W 57th Street",
            "postal": "10019",
            "city": "New York City",
            "state": "NY",
            "country": "USA"
        },
        {
            "id": "845373",
            "name": "Park Lane Hotel",
            "latitude": 40.765162,
            "longitude" -73.975113,
            "street": "W 59th Street",
            "postal": "10019",
            "city": "New York City",
            "state": "NY",
            "country": "USA"
        },
    ]
}
```

{% endtab %}
{% endtabs %}
