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

# Unpause and Reschedule Outbound Calls

> Unpauses outbound calls for a user and asynchronously reschedules eligible paused leads. Non-staff API users may only unpause their own calls; staff users may target any user. The response confirms that rescheduling was queued, not that every lead has already been rescheduled.



## OpenAPI

````yaml /Sela_API.yaml post /api/users/{id}/unpause-calls/
openapi: 3.0.3
info:
  title: Sela API
  version: 1.0.2
  description: >-
    Create and manage leads, configure outbound webhook subscriptions, and use
    customer-specific lead ingestion workflows. Unless an endpoint says
    otherwise, authenticate with `Authorization: Token <api-key>`.
servers:
  - url: https://api.trysela.com/
    description: Production API
security: []
tags:
  - name: Leads
    description: Create, retrieve, update, and schedule customer leads.
  - name: Call Control
    description: Pause or resume outbound calling for an API user.
  - name: Lead Types
    description: >-
      Discover lead categories and the public metadata fields accepted for each
      one.
  - name: Webhooks
    description: >-
      Manage subscriptions that deliver lead and call events to customer
      systems.
  - name: Lead Ingestion
    description: >-
      Submit provider-specific lead payloads through ingestion URLs configured
      by Sela.
  - name: File Ingestion
    description: Request temporary upload URLs for configured CSV ingestion sources.
paths:
  /api/users/{id}/unpause-calls/:
    post:
      tags:
        - Call Control
      summary: Unpause and Reschedule Outbound Calls
      description: >-
        Unpauses outbound calls for a user and asynchronously reschedules
        eligible paused leads. Non-staff API users may only unpause their own
        calls; staff users may target any user. The response confirms that
        rescheduling was queued, not that every lead has already been
        rescheduled.
      operationId: users_unpause_calls_create
      parameters:
        - in: path
          name: id
          schema:
            type: string
            pattern: ^\d+$
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserCallControlResponse'
              examples:
                CallsUnpaused:
                  value:
                    status: success
                  summary: Calls unpaused
          description: Unpause and rescheduling request accepted.
        '401':
          description: API token is missing or invalid.
        '404':
          description: User not found or not accessible.
      security:
        - tokenAuth: []
components:
  schemas:
    UserCallControlResponse:
      type: object
      properties:
        status:
          type: string
          description: Indicates that the pause or unpause request was accepted.
      required:
        - status
  securitySchemes:
    tokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Token-based authentication with required prefix "Token"

````