Mosaic Tasks API
The Tasks API from Mosaic — 2 operation(s) for tasks.
The Tasks API from Mosaic — 2 operation(s) for tasks.
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/mosaic-app-tasks-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Mosaic Open Members Tasks API
version: v1
description: 'The Mosaic Open API exposes Mosaic''s resource-management, workforce
planning, and project data so customers can build custom integrations
beyond Mosaic''s packaged connectors. Authentication uses an API token
issued by your Mosaic Customer Success Manager along with your unique
Mosaic Team ID.
Endpoint structure: `/api/{team_id}/{data_type}` where `{data_type}` is
one of the documented resources (team_memberships, projects, tasks,
time_entries, work_plans, etc.). The base host is
`https://api-server.prod.prod.us-east-1.mosaicapp.com` for multi-tenant
customers; single-tenant customers get a per-tenant URL.
Rate limit: 300 requests per 5 minutes (~1 req/sec). All traffic uses
HTTPS.
'
contact:
name: Mosaic
url: https://readme.mosaicapp.com/reference/authentication
servers:
- url: https://api-server.prod.prod.us-east-1.mosaicapp.com
description: Multi-tenant production API
security:
- apiKey: []
tags:
- name: Tasks
paths:
/api/{team_id}/tasks:
parameters:
- $ref: '#/components/parameters/TeamId'
- $ref: '#/components/parameters/XOrigin'
- $ref: '#/components/parameters/XTenant'
- $ref: '#/components/parameters/XRealmId'
get:
tags:
- Tasks
operationId: listTasks
summary: Fetches all tasks for a project.
responses:
'200':
description: Success
post:
tags:
- Tasks
operationId: createTask
summary: Creates a task.
requestBody:
required: true
content:
application/json:
schema:
type: object
additionalProperties: true
responses:
'201':
description: Created
/api/{team_id}/tasks/{id}:
parameters:
- $ref: '#/components/parameters/TeamId'
- $ref: '#/components/parameters/Id'
- $ref: '#/components/parameters/XOrigin'
- $ref: '#/components/parameters/XTenant'
- $ref: '#/components/parameters/XRealmId'
patch:
tags:
- Tasks
operationId: updateTask
summary: Updates a task.
requestBody:
required: true
content:
application/json:
schema:
type: object
additionalProperties: true
responses:
'200':
description: Success
delete:
tags:
- Tasks
operationId: deleteTask
summary: Deletes a task.
responses:
'204':
description: Deleted
components:
parameters:
XOrigin:
name: x-origin
in: header
required: true
description: The domain used for making API calls (must match registered origin).
schema:
type: string
Id:
name: id
in: path
required: true
schema:
type: string
XRealmId:
name: x-realm-id
in: header
required: true
description: Realm ID (`prod` for multi-tenant customers).
schema:
type: string
default: prod
TeamId:
name: team_id
in: path
required: true
description: Mosaic Team ID issued by your CSM.
schema:
type: string
XTenant:
name: x-tenant
in: header
required: true
description: Tenant ID (`prod` for multi-tenant customers).
schema:
type: string
default: prod
securitySchemes:
apiKey:
type: apiKey
in: header
name: Authorization
description: 'API token issued by your Mosaic Customer Success Manager. Send as the
raw `Authorization` header value (no `Bearer` prefix).
'