---
title: "Search Call Requests"
method: POST
path: "/v1/Outbound/{outboundId}/CallRequest"
tags: ["Outbound"]
---

# Search Call Requests

`POST /v1/Outbound/{outboundId}/CallRequest`

Fetches a list of API call requests associated with a specific outbound identifier. The search criteria, such as filters or pagination options, should be provided in the request body.

## Path parameters

- `outboundId` string, required

## Request body

- TableDateSearch — Extends TableSearch to include date filtering for more specific searches.
  - `skip` integer — Number of entries to skip for pagination.
  - `limit` integer — Limit on the number of entries to return.
  - `sortProp` string, nullable — Property name to sort by.
  - `isAscending` boolean — Whether the sort order is ascending.
  - `fromDate` string, date-time, required — The start date for filtering the search results.
  - `toDate` string, date-time, required — The end date for filtering the search results.

## Response `200`

A list of API call requests related to the specified outbound ID was successfully retrieved.

- ApiRequestViewTableSearchResult
  - `count` integer — The total number of items matching the search criteria.
  - `results` ApiRequestView[], nullable — The list of results for the current page, based on the search criteria.
    - `id` string, nullable — The unique identifier of the API request.
    - `status` integer — `1 - InCallQueue` `2 - OnCall` `10 - Completed` `20 - BlackListed` `100 - Error`
    - `outboundId` string, nullable — The unique identifier of the outbound campaign associated with this API request.
    - `created` string, date-time — The date and time when the API request was created.
    - `errors` string[], nullable — A list of errors that occurred during the API request, if any.
    - `callId` string, nullable — The unique identifier of the call associated with this API request, if available.

## Other responses

- `400` — The request was invalid. Possible causes include a missing or malformed outbound ID, or errors in the search parameters.

---

[API](https://skmtc.net/nlpearl/apis/nlpearl-client-api.md) · [All operations](https://skmtc.net/nlpearl/apis/nlpearl-client-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nlpearl/nlpearl-client-api/versions/52d64fc5d6e9/schema)
