Every API here is available over the APIs.io API and to AI agents over MCP.
openapi: 3.2.0
info:
version: 1.0.0
title: Kantata OX API Documentation Events API
description: "Kantata OX's API provides access to the majority of Kantata OX's data model. The API authenticates requests using OAuth2 tokens and exists primarily to allow scripts and 3rd-party applications to access and manage Kantata OX data on behalf of Kantata OX users.\n\n## Schema\n\nRequests must be sent via HTTPS and can be in either JSON or [Rails structured x-www-form-urlencoded](http://stackoverflow.com/a/950198) format. Responses will always be returned in JSON format. Dates and times are returned as [ISO 8601](http://www.w3.org/TR/NOTE-datetime) formatted strings. All requests to the API must have URLs relative to the base API URL:\n\n\n```\nhttps://api.mavenlink.com/api/v1/\n```\n\n## Authentication\n\nAll requests to the Kantata OX API must be authenticated with an OAuth bearer token. See the application workflow for details on how to register an application with Kantata OX and obtain OAuth bearer tokens.\n\nTo authenticate using the `Authorization` header, set the header's value to `Bearer <token>`. So, if your token was `abc123`, your HTTP request would include the header `Authorization: Bearer abc123`.\n\nFor example, authenticating a request using `curl` would mean running a command similar to this one:\n\n\n```curl\ncurl -H \"Authorization: Bearer abc123\" \"https://api.mavenlink.com/api/v1/workspaces.json\"\n```\n\nAll requests to the Kantata OX API require an Authorization header. For brevity, future API request examples in this documentation will not include the example Authorization header parameter.\n\n### OAuth 2.0\n\n[OAuth 2.0](http://oauth.net/2/) provides an evolving, standardized inter-application authentication workflow for the Web. To build an application that interacts with Kantata OX on behalf of your users, you will need to register your application, and then obtain an OAuth token for each of your users.\n\n#### Registering your application\n\nRegister and manage OAuth2 applications that can connect to Kantata OX at the [application management](https://app.mavenlink.com/oauth/applications) page as a Kantata OX account administrator. You'll need a paid Kantata OX account in order to register applications with us. Applications have a name and a callback URL for OAuth2.\n\nIf you only want to use the Kantata OX API for yourself, or as a backend connector, you must still register an Application, but then you can get an OAuth token for yourself on the Application's page. If you want your application to be able to use the Kantata OX API on behalf of other users, read the next section.\n\n#### Obtaining tokens for users\n\nEvery request to the Kantata OX API must be accompanied by a valid OAuth token, indicating that your application has been authorized by the Kantata OX user in question. When you register an application with us, we'll provide you with a secret key. That key is unique to your application, and shouldn't be shared with anyone else. Treat it like a password. You'll need it to request user tokens.\n\nTo authorize your application for Kantata OX API access and obtain a user token, follow the below steps for each Kantata OX user:\n\nNote: If you are using an OAuth2 library, many of these steps will be handled for you.\n\n 1. Request a short-term code, granted when the Kantata OX user agrees to allow your application access.\n\n Send your user to `/oauth/authorize` with the REQUIRED parameters `client_id`, `response_type`, and `redirect_uri`.\n\n * `client_id` is the ID assigned to your application by Kantata OX\n * `response_type` must be set to \"code\"\n * `redirect_uri` must be set to a URL where your application can accept codes and then exchange them for access tokens. It should match the `redirect_uri` specified when you registered your application.\n\n Here is an example URL that an application located at \"myapp.com\" might use. (Linebreaks are not included in the URL.)\n\n ```curl\n https://app.mavenlink.com/oauth/authorize?response_type=code&client_id=abc123&redirect_uri=http%3A%2F%2Fmyapp.com%2Foauth%2Fcallback\n ```\n\n 2. The user will be asked by Kantata OX if they want to authorize your application to interact with Kantata OX on their behalf.\n\n If something goes wrong (like the user refused to authorize your application), Kantata OX will redirect to the `redirect_uri` with query parameters providing information about the error. For example, if authorization is denied, the user will be redirected to:\n\n ```curl\n $REDIRECT_URI?error=access_denied&error_description=The+resource+owner+or+authorization+server+denied+the+request.\n ```\n\n If the user allows your application, then Kantata OX will redirect to the `redirect_uri` with query parameters providing your application with a time-limited code that your application can exchange for an access token within the next 5 minutes. Here is an example redirection with granted access:\n\n ```curl\n $REDIRECT_URI?code=abc123\n ```\n\n 3. Your application exchanges the code for an access token\n\n Now that your application has a code, it should make a POST request directly to Kantata OX at `https://app.mavenlink.com/oauth/token` to exchange the code for an access token that will allow continued interaction with the Kantata OX API. The request must include the `client_id`, `client_secret`, `grant_type`, `code`, and `redirect_uri` parameters.\n\n * `client_id` is the ID assigned to your application by Kantata OX\n * `client_secret` is the secret token assigned to your application by Kantata OX\n * `grant_type` must be set to \"authorization_code\" in order to exchange a code for an access token\n * `code` is the value that was returned in the `code` query parameter when Kantata OX redirected back to your `redirect_uri`\n * `redirect_uri` is the exact same value that you used in the original request to /oauth/authorize\n\n If the request is invalid for some reason, an error response like the one described above will be returned. However, the parameters will be returned in the response body, encoded as JSON, instead of in the URL encoded as query parameters.\n\n If the request is valid, Kantata OX will provide a response body, encoded in JSON, containing `access_token` and `token_type`.\n\n * `access_token` is the token that your application will use to authenticate requests to the Kantata OX API as this user\n * `token_type` will be \"bearer\"\n\n 4. Your application uses the access token to make authenticated requests to the Kantata OX API\n\n At this point, your application can use the access token to authenticate requests made to the Kantata OX API as described above in the [Authentication](#authentication) section.\n\n## Bearer Token\n**Security Scheme Type:** API Key\n\n**Header parameter name:** Bearer\n\n## OauthSecurity\n**Security Scheme Type:** OAuth2\n\n**Flow type:** `authorizationCode`\n\n**Authorization URL:** `https://app.mavenlink.com/oauth/authorize`\n\n**Token URL:** `https://app.mavenlink.com/oauth/token`\n\n### Security\n\nKantata OX OAuth access tokens do not expire and must be treated with the same security that you would treat client credentials such as passwords. All requests must be made over SSL and all user security credentials must be stored using industry best practices. If a user revokes your application's access, usage of the token will result in an error.\n\n## Response Format\n\nKantata OX API responses come back as JSON. All GET responses will be of a format similar to the following:\n\n\n```json\n{\n \"count\": 2,\n \"results\": [{ key: \"workspaces\", id: \"10\" }, { key: \"workspaces\", id: \"11\" }],\n \"workspaces\": {\n \"10\": {\n id: \"10\",\n title: \"some project\",\n participant_ids: [\"2\", \"6\"],\n primary_counterpart_id: \"6\"\n },\n \"11\": {\n id: \"11\",\n title: \"another project\",\n participant_ids: [\"2\", \"8\"],\n primary_counterpart_id: \"8\"\n }\n },\n \"users\": {\n \"2\": { id: \"2\", full_name: \"bob\" },\n \"6\": { id: \"6\", full_name: \"chaz\" },\n \"8\": { id: \"8\", full_name: \"jane\" }\n }\n}\n```\n\nAs you can see, Kantata OX API responses can return multiple data types simultaneously, transferring objects and their associations in a single response. In this example, the developer has likely requested the `/workspaces.json` endpoint, asking for inclusion of those workspaces' participants and primary counterparts. These associations have come back in the top-level object called `users`. The developer should always use the returned `results` array to retrieve the canonical results from an API request. This is because some objects may have associations of the same type and can thus be mixed together with their associations in the JSON. For example, stories (tasks) have sub_stories which are the same type of object, so looking directly at the returned `stories` key when stories have been requested to include their sub_stories will be confusing and will include both. Instead, iterate the `results` key to determine exactly which top-level objects matched your query and in what order.\n\nThe follow sections explain how to customize further the Kantata OX API responses to your needs.\n\n## Pagination\n\nLarge lists of items may be returned in pages. The JSON response will contain a key named `count` with a value of the number of objects returned by the entire query. If that number is greater than the number of objects returned by the request, additional objects may be requested by setting the parameter `page`, the parameter `per_page`, or both.\n\nIf you would like to start at a specific offset you may alternatively use `limit` and `offset` parameters. If both `limit` and `offset` are passed then `page` and `per_page` are ignored, otherwise behavior falls back to `page` and `per_page`.\n\n* `page`\n * type: Integer\n * default: 1\n* `per_page`\n * type: Integer\n * default: 20\n * maximum: 200\n* `usage`\n * workspaces.json?page=2&per_page=15\n\n-or-\n\n* `limit`\n * type: Integer\n * minimum: 1\n* `offset`\n * type: Integer\n * minimum: 0\n* `usage`\n * workspaces.json?limit=15&offset=10\n\n## Request by ID\n\nWhile each API endpoint returns a paginated listing of the data available, it is sometimes more useful to request only one (or only a few) items. The Kantata OX API provides two ways to do this. The first, via the `only` parameter, allows you to request one or more resources directly by ID. To request the data for a single Workspace with an ID of 5, make an API request to the URL `GET /api/v1/workspaces.json?only=5`. Multiple IDs can be supplied in a comma separated list, like `GET /api/v1/workspaces.json?only=5,6,7`. The returned JSON will contain only the objects with those IDs.\n\n* `only`\n * type: Comma separated Integers\n * default: not applicable\n* `usage`\n * workspaces.json?only=5,6\n\nAdditionally, we support traditional RESTful routes, such as `GET /api/v1/workspaces/5.json`. These routes also support our standard filters and includes, both detailed below. Unlike `only` requests to our \"index\" routes, these \"show\" routes will generate a 404 response if the requested resource cannot be found. Sometimes this is due to default filters being applied, so be sure to check the filter defaults applied in the specific documentation for the requested resource. More on filters below.\n\n## Filters\n\nMany API endpoints also provide an optional set of filters that can be applied to the data that will be returned. Each filter, and the logic behind it, is documented on the individual endpoint pages, but the general form is a URL query parameter or request parameter like `filter1=arg1&filter2=arg2`, where `filter1` and `filter2` are the names of two different filters, and `arg1` and `arg2` are the arguments to each filter, respectively. Additionally, some filters have default values, which indicates that they are automatically applied to your request with their default value. Default values are applied both on \"index\" (`GET /workspaces.json`) requests and \"show\" (`GET /workspaces/1.json`) requests.\n\n## Includes\n\nSome objects returned by the API may have associations that are not included in the JSON response by default. Those associated objects can be requested by adding an `include` parameter to the request. For example, to request both a list of posts, and the users that created those posts, you could request `/posts.json?include=user`. The response will consist of a JSON object with an array of result mappings under the `\"results\"` key, a `\"posts\"` key with a hash of post objects, keyed by id, and a `\"users\"` key with a hash of user objects, again keyed by id. To find the user that created a particular post, just use the post object's `\"user_id\"` key to find the user object keyed with the same id.\n\nMultiple associations may be fetched simultaneously by adding comma-separated values to the `include` parameter. For example, to fetch the user and replies associated with post 6, you might request `/posts.json?only=6&include=user,attachments`, which would supply both the users and the attachments that belong to the posts returned in the response.\n\n_Example_\n\n\n```curl\ncurl -H \"Authorization: Bearer abc123\" \"https://api.mavenlink.com/api/v1/posts.json?include=user,attachments\"\n```\n\n```json\n{\n \"count\": 1,\n \"results\": [\n { \"key\": \"posts\", \"id\": \"16270634\" }\n ],\n \"posts\": {\n \"16270634\": {\n \"id\": \"16270634\",\n \"message\": \"Hello World\",\n \"has_attachments\": true,\n \"user_id\": \"2\",\n \"workspace_id\": \"2249167\",\n \"attachment_ids\": [\"6700107\"]\n }\n },\n \"users\": {\n \"2\": {\n \"id\": \"2\",\n \"full_name\": \"John Doe\",\n \"email_address\": \"johnny_doe@example.com\"\n }\n },\n \"attachments\": {\n \"6700107\": {\n \"id\": \"6700107\",\n \"created_at\": \"2013-04-15T16:48:48-07:00\",\n \"filename\": \"turtle.jpg\",\n \"filesize\": 16225\n }\n }\n}\n```\n\n## Optional Fields\n\nSome objects returned by the API may have fields that are not included in the JSON response by default. Those optional fields can be requested by adding an `optional_fields` parameter to the request. For example, to request a list of stories and include the optional field `can_edit`, you could request `/stories.json?optional_fields=can_edit`. Each story in the response will include the requested optional field in their JSON.\n\nMultiple optional fields may be requested simultaneously by adding comma-separated values to the `optional_fields` parameter. For example, to fetch stories and include both `can_edit` and `can_post` fields in the response, you can request `/stories.json?optional_fields=can_edit,can_post`.\n\n_Example_\n\n\n```curl\ncurl -H \"Authorization: Bearer abc123\" \"https://api.mavenlink.com/api/v1/stories.json?optional_fields=can_edit,can_post\"\n```\n\n```json\n{\n \"count\": 1,\n \"results\": [\n {\n \"key\": \"stories\",\n \"id\": \"1941361\"\n }\n ],\n \"stories\": {\n \"1937928\": {\n \"title\": \"Example Story\",\n \"description\": \"example description\",\n ...\n \"subtree_depth\": 0,\n \"ancestry_depth\": 0,\n \"can_edit\": true,\n \"can_post\": true,\n \"time_trackable\": true,\n \"time_estimate_in_minutes\": null,\n ...\n \"parent_id\": null,\n \"root_id\": null,\n \"id\": \"1937928\"\n }\n },\n \"meta\": {\n \"count\": 1,\n \"page_count\": 1,\n \"page_number\": 1,\n \"page_size\": 20\n }\n}\n```\n\n## Ordering\n\nEach endpoint in the Kantata OX API allows ordering by various fields. If we're missing a sort field that you need, please ask! See the specific endpoint documentation for endpoint-specific details.\n\nWhen ordering, supply `order` with the name of a valid sort field for the endpoint and a direction. For example, `order=created_at:desc`.\n\n## Searching\n\nSome API endpoints support text search, however only some filters can be combined with search, and results will be returned ordered by relevancy to the search query. Search does not apply to `only` requests. If search is unavailable the response will contain a system error describing the problem.\n\nTo make a search request, simply add a `search` parameter to the request. For example, to search for stories with \"estimates\" in the title, assignee names, or other fields, request `/stories.json?search=estimates`\n\n## Errors\n\nIf there is an error while processing your request, the response will include an HTTP status code indicating the error. Errors are currently returned as a top-level `errors` key with an array of error objects. For example, on OAuth failure you will receive a HTTP 401 with the following JSON body:\n \n\n```json\n{\n errors: [\n {\n type: \"oauth\"\n message: \"Invalid OAuth 2 Request\"\n }\n ]\n}\n```\n\nSystem errors will look like:\n\n\n```json\n{\n errors: [\n {\n type: \"system\"\n message: \"Your account has been canceled\"\n }\n ]\n}\n```\n\nAnd model validation errors look like:\n\n\n```json\n{\n errors: [\n {\n type: \"validation\",\n message: \"Please give your project a title\",\n field: \"title\"\n },\n {\n type: \"validation\",\n message: \"Please select a role for this project\",\n field: \"creator_role\"\n }\n ]\n}\n```\n\n\n## Rate Limits\n\nWhen too many requests are made in a short amount of time, the API may reply with the HTTP code 429 Too Many Requests. In that case, simply retry your request after a small delay.\n\nThere are general rate limits applied to all requests. The following endpoints also have their own rate limits:\n\n* [Create a workspace](/tag/Workspaces#operation/create-workspace) - `POST /api/v1/workspaces`\n* [Get workspaces](/tag/Workspaces#operation/get-workspaces) - `GET /api/v1/workspaces`\n* [Create a workspace invitation](/tag/Workspaces#operation/create-workspace-invitation) - `POST /api/v1/workspaces/{id}/invite`\n* [Create an account invitation](/tag/Account-Invitations#operation/create-account-invitation) (i.e. Create a new user) - `POST /api/v1/account_invitations`\n* [Resend an account invitation](/tag/Account-Invitations#operation/resend-account-invitation) - `PUT /api/v1/account_invitations/{id}/resend`\n* [Create custom field value](/tag/Custom-Field-Values#operation/create-custom-field-value) - `POST /api/v1/custom_field_values`\n* [Get custom field values](/tag/Custom-Field-Values#operation/get-custom-field-values) - `GET /api/v1/custom_field_values`\n* [Create a project snapshot](/tag/Project-Snapshots#operation/create-project-snapshot) - `POST /api/v1/project_snapshots`\n\nPlease see the [Knowledge Base](https://knowledge.kantata.com/hc/en-us/articles/9698066628123) for the exact rate limits.\n\nPlease note that we reserve the right to change the limits at any time. In addition, if we determine that someone is using the API improperly, we may adjust the limits further.\n\n## Timeouts\n\nAll API requests will timeout after 3 minutes. Timeouts typically occur when there is a lot of data to return. You can use the following strategies to avoid your requests timing out:\n\n* Break up your request into smaller requests\n* Apply a date filter to your request\n* If you are polling multiple endpoints in order to export data or sync Kantata data to a third-party system, use the [Subscribed Events API](/tag/Events) instead. You can get recently updated objects in one request.\n"
termsOfService: https://www.kantata.com/terms-of-use
contact:
name: Kantata OX Support
url: https://knowledge.kantata.com/hc/en-us
license:
name: COPYRIGHT © 2026 Kantata, Inc.
url: https://www.kantata.com/terms-of-use
x-logo:
url: https://theme.zdassets.com/theme_assets/56104/04e93064d309f75d054b8cee885d1ea51e9be8f7.png
backgroundColor: '#FFFFFF'
altText: Kantata OX API Documentation
href: https://developer.kantata.com
servers:
- url: https://api.mavenlink.com/api/v1
tags:
- name: Events
description: 'Up to 9 days of trackable changes ("events") for an account can be accessed via the Subscribed Events API.
For a list of all the event types tracked by Subscribed Events, please see the [Knowledge Base](https://mavenlink.zendesk.com/hc/en-us/articles/4407962435227).
Note that only Account Administrators can access Subscribed Events.
Some actions performed in Kantata OX can generate multiple events. For instance, approving an Expense Report will generate `expense_report:updated` and `expense:updated` events. Note that events for the same action are not guaranteed to appear in the exact order the changes were completed.
Also note that although we try to create events within a few minutes of an action being performed, events may take some time to appear.
Additionally, events may sometimes be duplicated. Your application should handle duplicate events appropriately.'
paths:
/subscribed_events:
get:
summary: Fetching a list of Subscribed Events
description: 'Returns up to 9 days of records for all [event types](https://mavenlink.zendesk.com/hc/en-us/articles/4407962435227),
unless filter parameters have been applied.
Only records associated with the requester''s Kantata OX account are returned.
This endpoint returns structured Subscribed Event objects.
As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the `results` array
and will be indexed by ID in the `subscribed_events` top-level JSON key.
Please see our [Response Format](#section/Response-Format) section for more information.'
operationId: Get Subscribed Events
tags:
- Events
parameters:
- in: query
name: created_after
required: false
description: 'Filter for events created after a specified datetime. Events may be generated out of order or the
`subject_changed_at` and `created_at` times of an event can differ due to the lag between event
occurrence and generation. The datetime must be in [ISO 8601](https://www.w3.org/TR/NOTE-datetime) format.'
schema:
type: string
format: date-time
- in: query
name: created_before
required: false
description: 'Filter for events created before a specified datetime. Events may be generated out of order or the
`subject_changed_at` and `created_at` times of an event can differ due to the lag between event
occurrence and generation. The datetime must be in [ISO 8601](https://www.w3.org/TR/NOTE-datetime) format.'
schema:
type: string
format: date-time
- in: query
name: event_types
required: false
description: 'Filter for records of specified [event types](https://mavenlink.zendesk.com/hc/en-us/articles/4407962435227).
Specify multiple event types in a comma-separated list, like
`GET /api/v1/subscribed_events?event_types=time_entry:created,time_entry:updated,time_entry:deleted`.'
schema:
type: string
- in: query
name: include
description: 'Any of the below associations can be included in your request by providing the `include` param, e.g. `include=association1,association2`.
- `subject` (polymorphic) - When included, each event object will include a `subject_ref` that references the subject the event belongs to. The `subject_ref` is a JSON object with an `id` and `key`, where the `key` is the subject type.
For example, a `workspace:updated` event will have a `subject_ref` referencing the workspace, and the `key` will be `workspaces`.
If the subject is not available, `subject_ref` will be null. A subject may be unavailable if it was deleted or was transferred to another account.'
schema:
type: string
- in: query
name: most_recent
required: false
description: 'If true, only the most recent event will be returned for each subject
(i.e. the most recent change that occurred for each subject). This filter cannot be used
in combination with `most_recent_by_event_type`.'
schema:
type: boolean
- in: query
name: most_recent_by_event_type
required: false
description: 'If true, only the most recent event of each event type will be returned for each subject.
For example, if a workspace was created, updated 3 times, and deleted, the following events will be
generated: 1 `workspace:created` event, 3 `workspace:updated` events, and 1 `workspace:deleted` event.
If `most_recent_by_event_type` is true, the `workspace:created` event, the most recent `workspace:updated`
event, and the `workspace:deleted` event will be returned. This filter cannot be used in combination with
`most_recent`.'
schema:
type: boolean
- in: query
name: only
description: 'Allows you to request one or more resources directly by ID. Multiple IDs can be supplied
in a comma separated list, like `GET /api/v1/workspaces.json?only=5,6,7`.'
schema:
type: string
- in: query
name: optional_fields
description: Allows you to request one or more optional fields as an array.
schema:
type: array
items:
type: string
enum:
- previous_payload
- current_payload
- payload_changes
- in: query
name: order
description: 'Supply `order` with the name of a valid sort field for the endpoint and a direction.
Valid values: `created_at:asc` and `created_at:desc`.'
schema:
type: string
default: created_at:desc
- in: query
name: page
schema:
type: integer
format: int32
default: 1
- in: query
name: per_page
schema:
type: integer
format: int32
default: 20
maximum: 200
- in: query
name: subject_id
required: false
description: 'Filter for events belonging to a specific subject (e.g. a user, a project, etc). When using this filter,
you must also provide a `subject_type`. Multiple IDs can be provided in a comma-separated list
(e.g. `GET /api/v1/subscribed_events?subject_type=TimeEntry&subject_id=27,28,29`).'
schema:
type: string
- in: query
name: subject_type
required: false
description: "Filter for events by a specific subject type. You can pass in only one subject type for this parameter.\n Supported subject types: \"AccountColor\", \"AccountLocation\", \"AccountMembership\", \"Assignment\", \"BudgetChangeOrder\",\n \"CostRate\", \"CustomField\", \"CustomFieldSet\", \"DefaultStatusSet\", \"EmailAddress\", \"Estimate\", \"EstimateScenario\",\n \"EstimateScenarioResource\", \"Expense\", \"ExpenseReportSubmission\", \"Invoice\", \"LineItemLock\", \"Organization\",\n \"OrganizationMembership\", \"Participation\", \"ProjectAccessControl\", \"Role\", \"ScheduleChangeOrder\", \"Skill\",\n \"SkillMembership\", \"StatusSet\", \"StatusSetOption\", \"Story\", \"StoryAllocationDay\", \"TimeEntry\",\n \"TimeOffEntry\", \"TimesheetSubmission\", \"User\", \"Vendor\", \"Workspace\", \"WorkspaceAllocation\", \"WorkspaceApprover\",\n \"WorkspaceGroup\", \"WorkspaceInvitation\", \"WorkspaceResource\", \"WorkspaceStatusSet\", \"Workweek\", \"WorkweekMembership\"."
schema:
type: string
- in: query
name: user_ids
required: false
description: 'Filter for events triggered by specific users. Multiple IDs can be provided in a comma-separated list
(e.g. `GET /api/v1/subscribed_events?user_ids=5,25,45`).'
schema:
type: string
responses:
'200':
description: A list of Subscribed Events have been retrieved.
content:
application/json:
schema:
type: object
properties:
count:
type: integer
format: int32
meta:
type: object
properties:
count:
type: integer
format: int32
page_count:
type: integer
format: int32
page_number:
type: integer
format: int32
page_size:
type: integer
format: int32
results:
type: array
items:
type: object
properties:
key:
type: string
id:
type: string
subscribed_events:
type: object
additionalProperties:
$ref: '#/components/schemas/SubscribedEvents__Models__SubscribedEvent'
account_colors:
type: object
additionalProperties:
$ref: '#/components/schemas/AccountColor'
account_locations:
type: object
additionalProperties:
$ref: '#/components/schemas/AccountLocation'
account_memberships:
type: object
additionalProperties:
$ref: '#/components/schemas/AccountMembership'
assignments:
type: object
additionalProperties:
$ref: '#/components/schemas/Assignment'
billing_milestones:
type: object
additionalProperties:
$ref: '#/components/schemas/BillingMilestone'
cost_rates:
type: object
additionalProperties:
$ref: '#/components/schemas/CostRate'
custom_fields:
type: object
additionalProperties:
$ref: '#/components/schemas/CustomField'
custom_field_sets:
type: object
additionalProperties:
$ref: '#/components/schemas/CustomFieldSet'
estimates:
type: object
additionalProperties:
$ref: '#/components/schemas/Estimate'
estimate_scenarios:
type: object
additionalProperties:
$ref: '#/components/schemas/EstimateScenario'
estimate_scenario_resources:
type: object
additionalProperties:
$ref: '#/components/schemas/EstimateScenarioResource'
expenses:
type: object
additionalProperties:
$ref: '#/components/schemas/Expense'
expense_budgets:
type: object
additionalProperties:
$ref: '#/components/schemas/ExpenseBudget'
expense_report_submissions:
type: object
additionalProperties:
$ref: '#/components/schemas/ExpenseReportSubmission'
invoices:
type: object
additionalProperties:
$ref: '#/components/schemas/Invoice'
line_item_locks:
type: object
additionalProperties:
$ref: '#/components/schemas/LineItemLock'
organizations:
type: object
additionalProperties:
$ref: '#/components/schemas/Organization'
organization_me
# --- truncated at 32 KB (183 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/mavenlink/refs/heads/main/openapi/mavenlink-events-api-openapi.yml