Coperniq reminders API

The reminders API from Coperniq — 4 operation(s) for reminders.

Operations 9

GET /projects/{projectId}/reminders Get Project Reminders #
POST /projects/{projectId}/reminders Create Project Reminder #
GET /opportunities/{opportunityId}/reminders Get Opportunity Reminders #
POST /opportunities/{opportunityId}/reminders Create Opportunity Reminder #
GET /accounts/{accountId}/reminders Get Account Reminders #
POST /accounts/{accountId}/reminders Create Account Reminder #
GET /reminders/{reminderId} Get Reminder #
PATCH /reminders/{reminderId} Update Reminder #
DELETE /reminders/{reminderId} Delete Reminder #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/coperniq-reminders-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

coperniq-reminders-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Key accounts Reminders API
  version: 1.0.0
servers:
- url: https://api.coperniq.io/v1
  description: Production server
tags:
- name: reminders
paths:
  /projects/{projectId}/reminders:
    get:
      operationId: get-project-reminders
      summary: Get Project Reminders
      description: 'Retrieve reminders for a specific project.


        Supports:

        - Pagination (`page_size`, `page`)

        - Date filtering (`updated_after`, `updated_before`)

        - Sorting (`order_by`)

        - Completion filter (`is_completed`)

        '
      tags:
      - reminders
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      - name: page_size
        in: query
        description: Number of items per page (max 100)
        required: false
        schema:
          type: integer
          default: 20
      - name: page
        in: query
        description: Page number (1-based)
        required: false
        schema:
          type: integer
          default: 1
      - name: order_by
        in: query
        description: Sort order for results
        required: false
        schema:
          $ref: '#/components/schemas/ProjectsProjectIdRemindersGetParametersOrderBy'
      - name: updated_after
        in: query
        description: Filter items updated after this timestamp (ISO 8601)
        required: false
        schema:
          type: string
          format: date-time
      - name: updated_before
        in: query
        description: Filter items updated before this timestamp (ISO 8601)
        required: false
        schema:
          type: string
          format: date-time
      - name: is_completed
        in: query
        description: Filter by completion status
        required: false
        schema:
          type: string
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of reminders for the project
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReminderListResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetProjectRemindersRequestBadRequestError'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetProjectRemindersRequestUnauthorizedError'
    post:
      operationId: create-project-reminder
      summary: Create Project Reminder
      description: Create a new reminder associated with a project.
      tags:
      - reminders
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Reminder created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Reminder'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateProjectReminderRequestBadRequestError'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateProjectReminderRequestUnauthorizedError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReminderCreate'
  /opportunities/{opportunityId}/reminders:
    get:
      operationId: get-opportunity-reminders
      summary: Get Opportunity Reminders
      description: 'Retrieve reminders for a specific opportunity.


        Supports:

        - Pagination (`page_size`, `page`)

        - Date filtering (`updated_after`, `updated_before`)

        - Sorting (`order_by`)

        - Completion filter (`is_completed`)

        '
      tags:
      - reminders
      parameters:
      - name: opportunityId
        in: path
        required: true
        schema:
          type: string
      - name: page_size
        in: query
        description: Number of items per page (max 100)
        required: false
        schema:
          type: integer
          default: 20
      - name: page
        in: query
        description: Page number (1-based)
        required: false
        schema:
          type: integer
          default: 1
      - name: order_by
        in: query
        description: Sort order for results
        required: false
        schema:
          $ref: '#/components/schemas/OpportunitiesOpportunityIdRemindersGetParametersOrderBy'
      - name: updated_after
        in: query
        description: Filter items updated after this timestamp (ISO 8601)
        required: false
        schema:
          type: string
          format: date-time
      - name: updated_before
        in: query
        description: Filter items updated before this timestamp (ISO 8601)
        required: false
        schema:
          type: string
          format: date-time
      - name: is_completed
        in: query
        description: Filter by completion status
        required: false
        schema:
          type: string
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of reminders for the opportunity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReminderListResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOpportunityRemindersRequestBadRequestError'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOpportunityRemindersRequestUnauthorizedError'
    post:
      operationId: create-opportunity-reminder
      summary: Create Opportunity Reminder
      description: Create a new reminder associated with an opportunity.
      tags:
      - reminders
      parameters:
      - name: opportunityId
        in: path
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Reminder created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Reminder'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateOpportunityReminderRequestBadRequestError'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateOpportunityReminderRequestUnauthorizedError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReminderCreate'
  /accounts/{accountId}/reminders:
    get:
      operationId: get-account-reminders
      summary: Get Account Reminders
      description: 'Retrieve reminders for a specific account.


        Supports:

        - Pagination (`page_size`, `page`)

        - Date filtering (`updated_after`, `updated_before`)

        - Sorting (`order_by`)

        - Completion filter (`is_completed`)

        '
      tags:
      - reminders
      parameters:
      - name: accountId
        in: path
        required: true
        schema:
          type: string
      - name: page_size
        in: query
        description: Number of items per page (max 100)
        required: false
        schema:
          type: integer
          default: 20
      - name: page
        in: query
        description: Page number (1-based)
        required: false
        schema:
          type: integer
          default: 1
      - name: order_by
        in: query
        description: Sort order for results
        required: false
        schema:
          $ref: '#/components/schemas/AccountsAccountIdRemindersGetParametersOrderBy'
      - name: updated_after
        in: query
        description: Filter items updated after this timestamp (ISO 8601)
        required: false
        schema:
          type: string
          format: date-time
      - name: updated_before
        in: query
        description: Filter items updated before this timestamp (ISO 8601)
        required: false
        schema:
          type: string
          format: date-time
      - name: is_completed
        in: query
        description: Filter by completion status
        required: false
        schema:
          type: string
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of reminders for the account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReminderListResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAccountRemindersRequestBadRequestError'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAccountRemindersRequestUnauthorizedError'
    post:
      operationId: create-account-reminder
      summary: Create Account Reminder
      description: Create a new reminder associated with an account.
      tags:
      - reminders
      parameters:
      - name: accountId
        in: path
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Reminder created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Reminder'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateAccountReminderRequestBadRequestError'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateAccountReminderRequestUnauthorizedError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReminderCreate'
  /reminders/{reminderId}:
    get:
      operationId: get-reminder
      summary: Get Reminder
      description: Retrieve a specific reminder by ID.
      tags:
      - reminders
      parameters:
      - name: reminderId
        in: path
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Reminder details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Reminder'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetReminderRequestUnauthorizedError'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetReminderRequestNotFoundError'
    patch:
      operationId: update-reminder
      summary: Update Reminder
      description: Update an existing reminder.
      tags:
      - reminders
      parameters:
      - name: reminderId
        in: path
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Reminder updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Reminder'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateReminderRequestBadRequestError'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateReminderRequestUnauthorizedError'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateReminderRequestNotFoundError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReminderUpdate'
    delete:
      operationId: delete-reminder
      summary: Delete Reminder
      description: Delete a specific reminder by ID.
      tags:
      - reminders
      parameters:
      - name: reminderId
        in: path
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteReminderRequestUnauthorizedError'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteReminderRequestNotFoundError'
components:
  schemas:
    UpdateReminderRequestBadRequestError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/RemindersReminderIdPatchResponsesContentApplicationJsonSchemaCode'
        field:
          type: string
          description: Field that caused the validation error (if applicable)
      title: UpdateReminderRequestBadRequestError
    UpdateReminderRequestNotFoundError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/RemindersReminderIdPatchResponsesContentApplicationJsonSchemaCode'
      title: UpdateReminderRequestNotFoundError
    CreateAccountReminderRequestUnauthorizedError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/AccountsAccountIdRemindersPostResponsesContentApplicationJsonSchemaCode'
      title: CreateAccountReminderRequestUnauthorizedError
    GetAccountRemindersRequestBadRequestError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/AccountsAccountIdRemindersGetResponsesContentApplicationJsonSchemaCode'
        field:
          type: string
          description: Field that caused the validation error (if applicable)
      title: GetAccountRemindersRequestBadRequestError
    UpdateReminderRequestUnauthorizedError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/RemindersReminderIdPatchResponsesContentApplicationJsonSchemaCode'
      title: UpdateReminderRequestUnauthorizedError
    GetReminderRequestNotFoundError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/RemindersReminderIdGetResponsesContentApplicationJsonSchemaCode'
      title: GetReminderRequestNotFoundError
    ReminderListResponse:
      type: object
      properties:
        reminders:
          type: array
          items:
            $ref: '#/components/schemas/Reminder'
        totalCount:
          type: integer
      required:
      - reminders
      - totalCount
      title: ReminderListResponse
    ReminderUpdate:
      type: object
      properties:
        title:
          type: string
        assigneeId:
          type: integer
        description:
          type:
          - string
          - 'null'
        dueDate:
          type:
          - string
          - 'null'
          format: date-time
        isCompleted:
          type: boolean
        type:
          $ref: '#/components/schemas/ReminderUpdateType'
      title: ReminderUpdate
    GetProjectRemindersRequestBadRequestError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/ProjectsProjectIdRemindersGetResponsesContentApplicationJsonSchemaCode'
        field:
          type: string
          description: Field that caused the validation error (if applicable)
      title: GetProjectRemindersRequestBadRequestError
    AccountsAccountIdRemindersGetParametersOrderBy:
      type: string
      enum:
      - asc
      - desc
      default: asc
      title: AccountsAccountIdRemindersGetParametersOrderBy
    Reminder:
      type: object
      properties:
        id:
          type: integer
        title:
          type: string
        description:
          type:
          - string
          - 'null'
        type:
          oneOf:
          - $ref: '#/components/schemas/ReminderType'
          - type: 'null'
        dueDate:
          type:
          - string
          - 'null'
          format: date-time
        isCompleted:
          type: boolean
        completedAt:
          type:
          - string
          - 'null'
          format: date-time
        assigneeId:
          type:
          - integer
          - 'null'
        projectId:
          type:
          - integer
          - 'null'
          description: Present when the reminder belongs to a project.
        opportunityId:
          type:
          - integer
          - 'null'
          description: Present when the reminder belongs to an opportunity.
        accountId:
          type:
          - integer
          - 'null'
          description: Present when the reminder belongs to an account.
        createdBy:
          type:
          - integer
          - 'null'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      description: 'Exactly one of `projectId`, `opportunityId`, or `accountId` will be

        present, depending on which parent resource the reminder belongs to.

        '
      title: Reminder
    GetOpportunityRemindersRequestBadRequestError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/OpportunitiesOpportunityIdRemindersGetResponsesContentApplicationJsonSchemaCode'
        field:
          type: string
          description: Field that caused the validation error (if applicable)
      title: GetOpportunityRemindersRequestBadRequestError
    RemindersReminderIdDeleteResponsesContentApplicationJsonSchemaCode:
      type: string
      enum:
      - NOT_FOUND
      title: RemindersReminderIdDeleteResponsesContentApplicationJsonSchemaCode
    CreateOpportunityReminderRequestUnauthorizedError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/OpportunitiesOpportunityIdRemindersPostResponsesContentApplicationJsonSchemaCode'
      title: CreateOpportunityReminderRequestUnauthorizedError
    OpportunitiesOpportunityIdRemindersGetParametersOrderBy:
      type: string
      enum:
      - asc
      - desc
      default: asc
      title: OpportunitiesOpportunityIdRemindersGetParametersOrderBy
    AccountsAccountIdRemindersPostResponsesContentApplicationJsonSchemaCode:
      type: string
      enum:
      - UNAUTHORIZED
      title: AccountsAccountIdRemindersPostResponsesContentApplicationJsonSchemaCode
    ProjectsProjectIdRemindersGetResponsesContentApplicationJsonSchemaCode:
      type: string
      enum:
      - UNAUTHORIZED
      title: ProjectsProjectIdRemindersGetResponsesContentApplicationJsonSchemaCode
    ProjectsProjectIdRemindersGetParametersOrderBy:
      type: string
      enum:
      - asc
      - desc
      default: asc
      title: ProjectsProjectIdRemindersGetParametersOrderBy
    GetProjectRemindersRequestUnauthorizedError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/ProjectsProjectIdRemindersGetResponsesContentApplicationJsonSchemaCode'
      title: GetProjectRemindersRequestUnauthorizedError
    OpportunitiesOpportunityIdRemindersPostResponsesContentApplicationJsonSchemaCode:
      type: string
      enum:
      - UNAUTHORIZED
      title: OpportunitiesOpportunityIdRemindersPostResponsesContentApplicationJsonSchemaCode
    ProjectsProjectIdRemindersPostResponsesContentApplicationJsonSchemaCode:
      type: string
      enum:
      - UNAUTHORIZED
      title: ProjectsProjectIdRemindersPostResponsesContentApplicationJsonSchemaCode
    RemindersReminderIdPatchResponsesContentApplicationJsonSchemaCode:
      type: string
      enum:
      - NOT_FOUND
      title: RemindersReminderIdPatchResponsesContentApplicationJsonSchemaCode
    OpportunitiesOpportunityIdRemindersGetResponsesContentApplicationJsonSchemaCode:
      type: string
      enum:
      - UNAUTHORIZED
      title: OpportunitiesOpportunityIdRemindersGetResponsesContentApplicationJsonSchemaCode
    ReminderType:
      type: string
      enum:
      - CALL
      - EMAIL
      - IN_PERSON
      - VIRTUAL
      - DEADLINE
      - OTHER
      title: ReminderType
    DeleteReminderRequestUnauthorizedError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/RemindersReminderIdDeleteResponsesContentApplicationJsonSchemaCode'
      title: DeleteReminderRequestUnauthorizedError
    GetReminderRequestUnauthorizedError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/RemindersReminderIdGetResponsesContentApplicationJsonSchemaCode'
      title: GetReminderRequestUnauthorizedError
    ReminderCreateType:
      type: string
      enum:
      - CALL
      - EMAIL
      - IN_PERSON
      - VIRTUAL
      - DEADLINE
      - OTHER
      description: Reminder type
      title: ReminderCreateType
    CreateProjectReminderRequestBadRequestError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/ProjectsProjectIdRemindersPostResponsesContentApplicationJsonSchemaCode'
        field:
          type: string
          description: Field that caused the validation error (if applicable)
      title: CreateProjectReminderRequestBadRequestError
    CreateAccountReminderRequestBadRequestError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/AccountsAccountIdRemindersPostResponsesContentApplicationJsonSchemaCode'
        field:
          type: string
          description: Field that caused the validation error (if applicable)
      title: CreateAccountReminderRequestBadRequestError
    GetAccountRemindersRequestUnauthorizedError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/AccountsAccountIdRemindersGetResponsesContentApplicationJsonSchemaCode'
      title: GetAccountRemindersRequestUnauthorizedError
    CreateProjectReminderRequestUnauthorizedError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/ProjectsProjectIdRemindersPostResponsesContentApplicationJsonSchemaCode'
      title: CreateProjectReminderRequestUnauthorizedError
    AccountsAccountIdRemindersGetResponsesContentApplicationJsonSchemaCode:
      type: string
      enum:
      - UNAUTHORIZED
      title: AccountsAccountIdRemindersGetResponsesContentApplicationJsonSchemaCode
    CreateOpportunityReminderRequestBadRequestError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/OpportunitiesOpportunityIdRemindersPostResponsesContentApplicationJsonSchemaCode'
        field:
          type: string
          description: Field that caused the validation error (if applicable)
      title: CreateOpportunityReminderRequestBadRequestError
    ReminderCreate:
      type: object
      properties:
        title:
          type: string
          description: Reminder title
        assigneeId:
          type: integer
          description: ID of the user assigned to this reminder
        description:
          type: string
          description: Optional description
        dueDate:
          type: string
          format: date-time
          description: ISO 8601 due date
        isCompleted:
          type: boolean
          description: Whether the reminder is completed
        type:
          $ref: '#/components/schemas/ReminderCreateType'
          description: Reminder type
      required:
      - title
      - assigneeId
      title: ReminderCreate
    ReminderUpdateType:
      type: string
      enum:
      - CALL
      - EMAIL
      - IN_PERSON
      - VIRTUAL
      - DEADLINE
      - OTHER
      title: ReminderUpdateType
    GetOpportunityRemindersRequestUnauthorizedError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/OpportunitiesOpportunityIdRemindersGetResponsesContentApplicationJsonSchemaCode'
      title: GetOpportunityRemindersRequestUnauthorizedError
    RemindersReminderIdGetResponsesContentApplicationJsonSchemaCode:
      type: string
      enum:
      - NOT_FOUND
      title: RemindersReminderIdGetResponsesContentApplicationJsonSchemaCode
    DeleteReminderRequestNotFoundError:
      type: object
      properties:
        message:
          type: string
        code:
          $ref: '#/components/schemas/RemindersReminderIdDeleteResponsesContentApplicationJsonSchemaCode'
      title: DeleteReminderRequestNotFoundError
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic