# Retailer User Info

This API available only for user access-token integration

| GET | `/v1/retailers/userinfo` |
| --- | ------------------------ |

User info from retailers, which can be fetched using OAuth token

## Parameters

| ATTRIBUTE | TYPE   | DESCRIPTION |
| --------- | ------ | ----------- |
| token\*   | string | OAuth token |

## UserInfoResponse

| ATTRIBUTE | TYPE   | DESCRIPTION |
| --------- | ------ | ----------- |
| zip       | string |             |

### Sample Request

```bash
curl "https://graph.whisk.com/v1/retailers/userinfo?token=d0a2bb8e-24b5-4bb9-a3a1-7f039070ac0f" \
    -H "Accept: application/json" \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer <Access-Token>"
```

### Sample Response

```javascript
{
  "zip": 10001
}
```
