# Returns

Array of Dispatcher `Array`

## Child Attributes of Dispatcher

> **dispatcherId `Integer`**  
> Unique Dispatcher ID  
> * * *  
> **dispatcherName `String`**  
> Name of the Dispatcher  
> * * *  
> **companyId `Integer`**  
> Unique Company ID  
> * * *  
> **companyName `String`**  
> Name of the company  
> * * *  
> **companyAddress `String`**  
> Address of the company  
> * * *  
> **phone `String`**  
> Phone number with country code  
> * * *  
> **email `String`**  
> Email address of the company

## PARTNER-API-KEY

string

required

Defaults to <partner-api-key>

# Response Codes

## `200`

array of objects

### object

- dispatcherId
  - integer
  - Defaults to 0

- dispatcherName
  - string

- companyId
  - integer
  - Defaults to 0

- companyName
  - string

- companyAddress
  - string

- phone
  - string

- email
  - string

## `400`

## `401`

# Example Request

```bash
curl --request GET \
     --url https://api.shipday.com/partner/members \
     --header 'PARTNER-API-KEY: <partner-api-key>' \
     --header 'accept: application/json'
```

# Example Response

```json
[
  {
    "dispatcherId": 1234567890,
    "dispatcherName": "Dispatcher",
    "companyId": 123456789012,
    "companyName": "Test Company",
    "companyAddress": "California City, CA, USA",
    "phone": "+1234567890",
    "email": "test@example.com"
  }
]
```
