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

# Fetch Sender ID

> An endpoint that allows you to fetch the list of all your Sender IDs

<ParamField header="AppId" type="string" required>
  Application ID from dashboard
</ParamField>

#### RESPONSES

<ResponseField name="200" type="json">
  json
</ResponseField>

<ResponseField name="400" type="Object">
  <Expandable title="properties">
    <ResponseField name="error" type="string">
      error message
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="401" type="Object">
  <Expandable title="properties">
    <ResponseField name="error" type="string">
      error message
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "entity": [
      {
        "sender_id": "Dojaher",
        "activated": false,
        "createdAt": "2021-09-08T14:21:17.867Z"
      },
      {
        "sender_id": "Dojaher",
        "activated": false,
        "createdAt": "2021-10-07T07:09:55.179Z"
      },
      {
        "sender_id": "wale",
        "activated": false,
        "createdAt": "2021-10-07T20:52:05.242Z"
      }
    ]
  }
  ```

  ```json 400 theme={null}
  {
    "error": "Invalid request parameters"
  }
  ```

  ```json 401 theme={null}
  {
    "error": "App Couldn't be Validated"
  }
  ```
</ResponseExample>
