# Fulfillment Center

A fulfillment center (FC) is a physical location from which Eshopbox fulfills orders.

All Eshopbox fulfillment centers will be listed *here.* With each FC, you will be able to view its

* Address
* Operating days and hours
* The available area in sq. ft.

`Eshopbox` Fulfillment Centers

| Fulfillment center id | Fulfillment center name          |
| --------------------- | -------------------------------- |
| 7                     | Eshopbox Test Warehouse          |
| 18                    | Eshopbox Mumbai                  |
| 67                    | Flipkart Assured                 |
| 21                    | Eshopbox Patli Gurgaon           |
| 70                    | FLIPKART SMART ESHOPBOX PATLI    |
| 71                    | FLIPKART SMART ESHOPBOX VELOCITY |
| 72                    | Eshopbox\_mumbai                 |
| 73                    | COSMETIC\_ESHOPVelocity          |

{% tabs %}
{% tab title="Attributes" %}

| Attribute                       | Type                                                                                         | Description                                                                                                                            |
| ------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| `warehouseId`                   | `integer`                                                                                    | Id to uniquely identify Fulfillment center                                                                                             |
| `wahouseName`                   | `string`                                                                                     | Fulfillment center name                                                                                                                |
| `facilityId`                    | `integer`                                                                                    | Unique facility id for particular fulfillment center                                                                                   |
| `facility`                      | `string`                                                                                     | Name of Facility                                                                                                                       |
| `subscriptionId`                | `integer`                                                                                    | Id to uniquely identify subscription                                                                                                   |
| `externalWarehouseId`           | `integer`                                                                                    | Id to uniquely identify External warehouse                                                                                             |
| `externalWmsAccountId`          | `integer`                                                                                    | Id to uniquely identify external wms Account                                                                                           |
| `addressLine1`                  | `string`                                                                                     | Registered address of Fulfillment center                                                                                               |
| `addressLine2`                  | `string`                                                                                     | Registered address of Fulfillment center                                                                                               |
| `country`                       | `string`                                                                                     | Registered country of the Fulfillment center                                                                                           |
| `city`                          | `string`                                                                                     | Registered city of the Fulfillment center                                                                                              |
| `state`                         | `string`                                                                                     | Registered state of Fulfillment center                                                                                                 |
| `pincode`                       | `string`                                                                                     | Registered pin-code of Fulfillment center                                                                                              |
| `location`                      | `string`                                                                                     | Registered Location of Fulfillment center                                                                                              |
| `area`                          | `string`                                                                                     | Registered Area of Fulfillment center                                                                                                  |
| `primaryPhone`                  | `string`                                                                                     | Contact number of Fulfillment center                                                                                                   |
| `operatingHours`                | `string`                                                                                     | Operating hours of Fulfillment center                                                                                                  |
| `operatingModel`                | `string`                                                                                     | Operating model(Consignment and Billing) of Fulfillment center                                                                         |
| `operatingDays`                 | `string`                                                                                     | Number of days Fulfillment center open for service                                                                                     |
| `longitude`                     | `String`                                                                                     | Longitude of Fulfillment center                                                                                                        |
| `latitude`                      | `string`                                                                                     | Latitude of Fulfillment center                                                                                                         |
| `gstin`                         | `string`                                                                                     | Registered GSTIN number of Fulfillment center                                                                                          |
| `enrollmentStatus`              | `string`                                                                                     | To verify whether particular account is verified user of that Fulfillment center                                                       |
| `requestDocuments`              | [`array[object]`](/eshopbox-developers/setting/subscription.md#the-requestdocuments-object)  | Document submitted by Fulfillment center for verification purpose                                                                      |
| `eshopboxDocuments`             | [`array[object]`](/eshopbox-developers/setting/subscription.md#the-eshopboxdocuments-object) | Document submitted by `Eshopbox`                                                                                                       |
| `acknowledgementCertificateUrl` | `string`                                                                                     | Acknowledgement certificate URL submitted by Client                                                                                    |
| `status`                        | `string`                                                                                     | Fulfillment center status Active or Inactive for operation [`Enum  : 0 , 1`](/eshopbox-developers/setting/subscription.md#enum-status) |
| `createdAt`                     | `string`                                                                                     | The time at which Fulfillment center is created                                                                                        |
| `updatedAt`                     | `string`                                                                                     | The time at which Fulfillment center is updated                                                                                        |

{% endtab %}

{% tab title="Sample Object" %}

```
{
    "warehouseId": "9",
    "warehouseName": "Kapas Kraft Apparels Limited 1006",
    "facilityId": "3",
    "facility": "GGN",
    "externalWarehouseId": "2022",
    "externalWmsAccountId": "1",
    "subscriptionId": "1",
    "addressLine1": "Khasra no 5 16 2 17",
    "addressLine2": "Gundavali, Bhiwandi",
    "city": "Bangalore",
    "state": "Karnataka",
    "country": "India",
    "pincode": "122018",
    "location": "Bangalore",
    "area": "80",
    "primaryPhone": "7546390123",
    "operatingHours": "08:30:00-20:00:00",
    "operatingDays": "monday,tuesday,wednesday,thursday",
    "operatingModel": "consignment",
    "longitude": "",
    "latitude": "",
    "gstin": "06ABCD1234E1Z1",
    "status": "1",
    "requestDocuments": {
        "gstCertificateUrl": "http://certificatestorage.com/gstCertificate.jpg",
        "signatureUrl": "http://signaturestorage.com/sign.jpg",
        "companyLogoUrl": "http://logostorage.com/logo.jpg"
    },
    "eshopboxDocuments": {
        "nocUrl": "http://nocstorage.com/noc.jpg",
        "utilityBillUrl": "http://utilitystorage.com/bill.jpg",
        "leaseAgreementUrl": "http://agreementstorage.com/lease.jpg"
    },
    "acknowledgementCertificateUrl": "http://certificatestorage.com/ack.jpg",
    "enrollmentStatus": "PENDING",
    "createdAt": "2019-05-09T12:55:24.000+05:30",
    "updatedAt": "2019-06-07T13:40:47.000+05:30"
}
```

{% endtab %}
{% endtabs %}

## The `requestDocuments` Object

| Attributes                              | Type     | Description                                                 |
| --------------------------------------- | -------- | ----------------------------------------------------------- |
| `requestDocuments[].gstCertificateUrl`  | `string` | `GST` certificate provided by user for verification purpose |
| `requestDocuments[].companyLogoName`    | `string` | company `LOGO` provided by user for verification purpose    |
| `requestDocuments[].companyLogoName`    | `string` | Image of company logo provided by user                      |
| `requestDocuments[].signatureUrl`       | `string` | Signature url provided for verification purpose             |
| `requestDocuments[].gstCertificateName` | `string` | Image of gst certificate                                    |

## Enum: status

| Attribute | Descriptions                                                    |
| --------- | --------------------------------------------------------------- |
| `1`       | Fulfillment center is active and ready to take orders           |
| `0`       | Fulfillment center is inactive and  is not ready to take orders |

### The `eshopboxDocuments` object

| Attribute                               | Type     | Description                              |
| --------------------------------------- | -------- | ---------------------------------------- |
| `eshopboxDocuments[].nocUrl`            | `string` | NOC URL provide by `Eshopbox`            |
| `eshopboxDocuments[].utilityBillUrl`    | `string` | Utility Bill URL provide by `Eshopbox`   |
| `eshopboxDocuments[].leaseAgreementUrl` | `string` | LeaseAgreement URL provide by `Eshopbox` |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://eshop.gitbook.io/eshopbox-developers/setting/subscription.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
