Coperniq calls API
The calls API from Coperniq — 3 operation(s) for calls.
The calls API from Coperniq — 3 operation(s) for calls.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/coperniq-calls-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
openapi: 3.2.0
info:
title: Key accounts Calls API
version: 1.0.0
servers:
- url: https://api.coperniq.io/v1
description: Production server
tags:
- name: calls
paths:
/projects/{projectId}/calls:
get:
operationId: list-project-calls
summary: List Project Calls
description: Retrieve all phone call records associated with a project
tags:
- calls
parameters:
- name: projectId
in: path
description: Project identifier
required: true
schema:
type: integer
- name: x-api-key
in: header
required: true
schema:
type: string
responses:
'200':
description: List of call records
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Call'
'401':
description: Authentication failed
content:
application/json:
schema:
$ref: '#/components/schemas/ListProjectCallsRequestUnauthorizedError'
'404':
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/ListProjectCallsRequestNotFoundError'
post:
operationId: create-project-call
summary: Create Project Call
description: Create a new phone call record associated with a project
tags:
- calls
parameters:
- name: projectId
in: path
required: true
schema:
type: string
- name: x-api-key
in: header
required: true
schema:
type: string
responses:
'201':
description: Call record created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Call'
'400':
description: Invalid request
content:
application/json:
schema:
$ref: '#/components/schemas/CreateProjectCallRequestBadRequestError'
'401':
description: Authentication failed
content:
application/json:
schema:
$ref: '#/components/schemas/CreateProjectCallRequestUnauthorizedError'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CallCreate'
/opportunities/{opportunityId}/calls:
get:
operationId: list-opportunity-calls
summary: List Opportunity Calls
description: 'Retrieve all phone call records associated with an opportunity
**Note:** The `/requests` path is an alias for `/opportunities` and will continue to work until users are individually notified and migrated.
'
tags:
- calls
parameters:
- name: opportunityId
in: path
description: Opportunity identifier
required: true
schema:
type: integer
- name: x-api-key
in: header
required: true
schema:
type: string
responses:
'200':
description: List of call records
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Call'
'401':
description: Authentication failed
content:
application/json:
schema:
$ref: '#/components/schemas/ListOpportunityCallsRequestUnauthorizedError'
'404':
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/ListOpportunityCallsRequestNotFoundError'
post:
operationId: create-opportunity-call
summary: Create Opportunity Call
description: 'Create a new phone call record associated with an opportunity
**Note:** The `/requests` path is an alias for `/opportunities` and will continue to work until users are individually notified and migrated.
'
tags:
- calls
parameters:
- name: opportunityId
in: path
description: Opportunity identifier
required: true
schema:
type: integer
- name: x-api-key
in: header
required: true
schema:
type: string
responses:
'201':
description: Call record created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Call'
'400':
description: Invalid request
content:
application/json:
schema:
$ref: '#/components/schemas/CreateOpportunityCallRequestBadRequestError'
'401':
description: Authentication failed
content:
application/json:
schema:
$ref: '#/components/schemas/CreateOpportunityCallRequestUnauthorizedError'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CallCreate'
/accounts/{accountId}/calls:
get:
operationId: list-account-calls
summary: List Account Calls
description: 'Retrieve all phone call records associated with an account
**Note:** The `/clients` path is an alias for `/accounts` and will continue to work until users are individually notified and migrated.
'
tags:
- calls
parameters:
- name: accountId
in: path
description: Account identifier
required: true
schema:
type: integer
- name: x-api-key
in: header
required: true
schema:
type: string
responses:
'200':
description: List of call records
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Call'
'401':
description: Authentication failed
content:
application/json:
schema:
$ref: '#/components/schemas/ListAccountCallsRequestUnauthorizedError'
'404':
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/ListAccountCallsRequestNotFoundError'
post:
operationId: create-account-call
summary: Create Account Call
description: 'Create a new phone call record associated with an account
**Note:** The `/clients` path is an alias for `/accounts` and will continue to work until users are individually notified and migrated.
'
tags:
- calls
parameters:
- name: accountId
in: path
description: Account identifier
required: true
schema:
type: integer
- name: x-api-key
in: header
required: true
schema:
type: string
responses:
'201':
description: Call record created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Call'
'400':
description: Invalid request
content:
application/json:
schema:
$ref: '#/components/schemas/CreateAccountCallRequestBadRequestError'
'401':
description: Authentication failed
content:
application/json:
schema:
$ref: '#/components/schemas/CreateAccountCallRequestUnauthorizedError'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CallCreate'
components:
schemas:
OpportunitiesOpportunityIdCallsPostResponsesContentApplicationJsonSchemaCode:
type: string
enum:
- UNAUTHORIZED
title: OpportunitiesOpportunityIdCallsPostResponsesContentApplicationJsonSchemaCode
CreateOpportunityCallRequestUnauthorizedError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/OpportunitiesOpportunityIdCallsPostResponsesContentApplicationJsonSchemaCode'
title: CreateOpportunityCallRequestUnauthorizedError
CallOutcome:
type: string
enum:
- ANSWERED
- MISSED
description: Call outcome
title: CallOutcome
CallCreateOutcome:
type: string
enum:
- ANSWERED
- MISSED
description: Call outcome
title: CallCreateOutcome
CallCreateDisposition:
type: string
enum:
- INFO_PROVIDED
- VISIT_SCHEDULED
- ISSUE_RESOLVED
- FOLLOW_UP
- ESCALATION
- NO_ACTION
- UNRESPONSIVE
- OTHER
description: Call disposition
title: CallCreateDisposition
CreateProjectCallRequestUnauthorizedError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/ProjectsProjectIdCallsPostResponsesContentApplicationJsonSchemaCode'
title: CreateProjectCallRequestUnauthorizedError
ListOpportunityCallsRequestNotFoundError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/OpportunitiesOpportunityIdCallsGetResponsesContentApplicationJsonSchemaCode'
title: ListOpportunityCallsRequestNotFoundError
CreateOpportunityCallRequestBadRequestError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/OpportunitiesOpportunityIdCallsPostResponsesContentApplicationJsonSchemaCode'
field:
type: string
description: Field that caused the validation error (if applicable)
title: CreateOpportunityCallRequestBadRequestError
ListOpportunityCallsRequestUnauthorizedError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/OpportunitiesOpportunityIdCallsGetResponsesContentApplicationJsonSchemaCode'
title: ListOpportunityCallsRequestUnauthorizedError
ProjectsProjectIdCallsGetResponsesContentApplicationJsonSchemaCode:
type: string
enum:
- NOT_FOUND
title: ProjectsProjectIdCallsGetResponsesContentApplicationJsonSchemaCode
AccountsAccountIdCallsGetResponsesContentApplicationJsonSchemaCode:
type: string
enum:
- NOT_FOUND
title: AccountsAccountIdCallsGetResponsesContentApplicationJsonSchemaCode
CallCreateReason:
type: string
enum:
- PRODUCT
- PROCESS
- SERVICE
- ACCOUNTING
- REVENUE_OPPORTUNITY
- FEEDBACK
- OTHER
description: Reason for the call
title: CallCreateReason
ListProjectCallsRequestNotFoundError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/ProjectsProjectIdCallsGetResponsesContentApplicationJsonSchemaCode'
title: ListProjectCallsRequestNotFoundError
Call:
type: object
properties:
id:
type: integer
description: Call identifier
fromNumber:
type: string
description: Phone number that initiated the call
toNumber:
type: string
description: Phone number that received the call
isInbound:
type: boolean
description: Whether the call was inbound (true) or outbound (false)
outcome:
oneOf:
- $ref: '#/components/schemas/CallOutcome'
- type: 'null'
description: Call outcome
startTime:
type:
- string
- 'null'
format: date-time
description: When the call started
endTime:
type:
- string
- 'null'
format: date-time
description: When the call ended
reason:
oneOf:
- $ref: '#/components/schemas/CallReason'
- type: 'null'
description: Reason for the call
disposition:
oneOf:
- $ref: '#/components/schemas/CallDisposition'
- type: 'null'
description: Call disposition
note:
type:
- string
- 'null'
description: Notes about the call
recordingUrl:
type:
- string
- 'null'
description: URL to the call recording
transcriptUrl:
type:
- string
- 'null'
description: URL to the call transcript
missedCount:
type:
- integer
- 'null'
description: Number of times the call was missed
createdAt:
type: string
format: date-time
description: Creation timestamp
updatedAt:
type: string
format: date-time
description: Last update timestamp
required:
- id
- fromNumber
- toNumber
- isInbound
- createdAt
- updatedAt
title: Call
ProjectsProjectIdCallsPostResponsesContentApplicationJsonSchemaCode:
type: string
enum:
- UNAUTHORIZED
title: ProjectsProjectIdCallsPostResponsesContentApplicationJsonSchemaCode
CreateAccountCallRequestBadRequestError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/AccountsAccountIdCallsPostResponsesContentApplicationJsonSchemaCode'
field:
type: string
description: Field that caused the validation error (if applicable)
title: CreateAccountCallRequestBadRequestError
ListAccountCallsRequestNotFoundError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/AccountsAccountIdCallsGetResponsesContentApplicationJsonSchemaCode'
title: ListAccountCallsRequestNotFoundError
AccountsAccountIdCallsPostResponsesContentApplicationJsonSchemaCode:
type: string
enum:
- UNAUTHORIZED
title: AccountsAccountIdCallsPostResponsesContentApplicationJsonSchemaCode
ListAccountCallsRequestUnauthorizedError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/AccountsAccountIdCallsGetResponsesContentApplicationJsonSchemaCode'
title: ListAccountCallsRequestUnauthorizedError
OpportunitiesOpportunityIdCallsGetResponsesContentApplicationJsonSchemaCode:
type: string
enum:
- NOT_FOUND
title: OpportunitiesOpportunityIdCallsGetResponsesContentApplicationJsonSchemaCode
CallReason:
type: string
enum:
- PRODUCT
- PROCESS
- SERVICE
- ACCOUNTING
- REVENUE_OPPORTUNITY
- FEEDBACK
- OTHER
description: Reason for the call
title: CallReason
ListProjectCallsRequestUnauthorizedError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/ProjectsProjectIdCallsGetResponsesContentApplicationJsonSchemaCode'
title: ListProjectCallsRequestUnauthorizedError
CreateAccountCallRequestUnauthorizedError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/AccountsAccountIdCallsPostResponsesContentApplicationJsonSchemaCode'
title: CreateAccountCallRequestUnauthorizedError
CreateProjectCallRequestBadRequestError:
type: object
properties:
message:
type: string
code:
$ref: '#/components/schemas/ProjectsProjectIdCallsPostResponsesContentApplicationJsonSchemaCode'
field:
type: string
description: Field that caused the validation error (if applicable)
title: CreateProjectCallRequestBadRequestError
CallDisposition:
type: string
enum:
- INFO_PROVIDED
- VISIT_SCHEDULED
- ISSUE_RESOLVED
- FOLLOW_UP
- ESCALATION
- NO_ACTION
- UNRESPONSIVE
- OTHER
description: Call disposition
title: CallDisposition
CallCreate:
type: object
properties:
fromNumber:
type: string
description: Phone number that initiated the call
toNumber:
type: string
description: Phone number that received the call
isInbound:
type: boolean
default: false
description: Whether the call was inbound (true) or outbound (false)
outcome:
$ref: '#/components/schemas/CallCreateOutcome'
description: Call outcome
startTime:
type: string
format: date-time
description: When the call started
endTime:
type: string
format: date-time
description: When the call ended
reason:
$ref: '#/components/schemas/CallCreateReason'
description: Reason for the call
disposition:
$ref: '#/components/schemas/CallCreateDisposition'
description: Call disposition
note:
type: string
description: Notes about the call
recordingUrl:
type: string
description: URL to the call recording
transcriptUrl:
type: string
description: URL to the call transcript
required:
- fromNumber
- toNumber
- isInbound
- startTime
- endTime
- reason
- disposition
title: CallCreate
securitySchemes:
BasicAuth:
type: http
scheme: basic