Welcome to the documentation for the Admin API. This documentation describes the functionality available only in the current versions of API methods. You can also review the documentation for all API methods for information about both current and deprecated API methods.
For governance and security purposes, Quip makes available a set of APIs to enable specific users to see all content within a Quip site and to take actions against that content.
This API requires that you have first followed the setup instructions for the Quip Automation API.
To call this API, the access token you use must be for a user who is an admin.
You must also have the admin API enabled for your quip instance. Ask your support representative if you would like this functionality enabled.
You can access Quip's APIs if your company uses any of these products:
Note: These Admin APIs are available only as add-on purchases: Events API and Governance API.
If you're a Virtual Private Cloud (VPC) customer, you can call Quip's APIs using URIs in which you replace: quip.com with customername.onquip.com or quip-customername.com.
For example, if your company is Acme and the URI is https://platform.quip.com/1/threads/edit-document, as a VPC customer, use one of these URIs instead depending on your company's assigned VPC URL:
Quip's APIs have rate limits to help ensure fair and reliable access to APIs for all of our customers.
When you call our APIs via integrations you build (including integrations using Process Builder and Flow), those calls are subject to our rate limits.
The Admin API is rate limited by number of requests per minute per user - with defaults of:
API responses include a few custom headers to help developers implement backoffs in their code. These headers are:
X-Ratelimit-Limit
: The number of requests per minute/hour the user can makeX-Ratelimit-Remaining
: The number of requests remaining this user can
make within the minute/hour. This number changes with each requestX-Ratelimit-Reset
: The UTC timestamp for when the rate limit resetsQuip's APIs are also subject to a per-company rate limit with a default of 600 requests per minute. The API responses include these custom headers to help developers implement backoffs in their code:
X-Company-RateLimit-Limit
: The number of requests per minute that your company can makeX-Company-RateLimit-Remaining
: The number of requests remaining for your company within the minuteX-Company-RateLimit-Reset
: The UTC timestamp for when the rate limit resetsX-Company-Retry-After
: The number of seconds after which your company can make API calls againWe recommend that you use the Automation API to automate user-level processes such as document copying and editing and to integrate Quip with your other systems. Use the Admin API for admin-level site-wide or security workflows such as activity monitoring or quarantining documents.
Quip's APIs integrate with Salesforce, Slack, Google Workspace, Github, Jira, Stripe, Dropbox, Box, Zendesk and more. You can connect nearly any application to Quip using our APIs, including your company's proprietary applications or systems. Browse our sample apps or download prebuilt apps on Salesforce AppExchange.
In the Quip Admin Console, create a placeholder user (not associated with an employee) or bot user for your integrations. That way, when you deprovision an employee's user account, the integration isn't affected. Additionally, this allows for a more clear separation of duties between an employee and an integration user.
Currently, there's no way for the API keys to change automatically. You can only create API keys manually.
All of your company's Admin and Automation API calls are counted in your rate limits, including calls you make via Process Builder and Flow. There are per-user and per-company rate limits for the Admin and Automation APIs.
If you need to call APIs more frequently than allowed by the Admin and Automation API rate limits, contact Quip Customer Support for help.
The responses in Quip's Admin and Automation APIs contain headers that provide information about your API usage.
Use the Events API to get information about Quip engagement. You can then feed that information into your engagement monitoring systems.
Consult our trusted partner for eDiscovery and eArchiving solutions at onna.com/quip.
You can export Quip documents or spreadsheets to PDF using the Create Export PDF Request API method.
Use the Get Recent Messages API method to retrieve the 25 most-recent comments in a Quip document. You can then export the response of your API call to your other systems.
The Disable User v1.1 or v2.0 API method allows you to deactivate a user account.
Read the release notes to find out about new Quip developer features. Subscribe to the Salesforce Developer newsletter to get developer news, tips, and best practices. You can also follow these social media channels: SalesforceDevs Twitter feed, SalesforceDevs LinkedIn page, SalesforceDevs Facebook page.
Ask other Quip developers on Salesforce Stack Exchange.
To improve the quality and performance of API methods, Quip periodically releases new versions and deprecates older versions. Examples of changes that sometimes require creating new versions are:
Versions are identified in the path for each API method. Examples:
We inform you in a release note at least one year before support for an API method ends. In addition, we update the reference documentation to identify the current and deprecated versions of an API method. Our REST APIs have two versions of reference documentation:
Update your integrations so that they point to the current version instead of a deprecated version before support for an API method ends. Example scenario:
As needed, for your integrations, you can download the OpenAPI Specification (OAS) files for current and all versions of each REST API.
Authentication gives you access to the Quip Admin and Automation APIs. You can build integrations that call our APIs. To access Quip's APIs, first create an API key. Then get an access token using the API key as described in Get Access to Quip's APIs. You can create additional API keys for your other integrations with the applicable scopes needed for the features in a specific integration. You can also get a personal access token to test our APIs.
Use an OAuth2-compatible mechanism for authentication. Quip's approach follows RFC 6749.
Our API endpoints accept authentication tokens as described in
RFC 6750.
In most cases, this means that when you call our API endpoints, you
can pass in an Authorization
header with content
"Bearer {{token}}". {{token}} is the value of an access token obtained
by following the steps described in
Get Access to Quip's APIs.
The only endpoints that don't require an Authorization header are these
Authentication endpoints:
Token Endpoint,
Authorization Endpoint,
Revoke a Token.
This table lists the URLs for Quip's Authentication endpoints that you can call when you build your integrations. In addition, this table describes available scopes for the Admin API. See the Domain Authentication section and the reference documentation linked to in this table for information about using the authentication endpoints.
Security Scheme Type | OAuth2 |
---|---|
authorizationCode OAuth Flow | Authorization URL: https://platform.quip.com/1/oauth/login Token URL: https://platform.quip.com/1/oauth/access_token Refresh URL: https://platform.quip.com/1/oauth/access_token Scopes:
|
Note: Before building applications, you must select your required scopes when you create the API keys. And ensure that your application users have the correct access to the content they'll use in your applications. For example, if users need to edit a Quip document using your application, they must have edit access on that document.
Here are some recommended practices to follow to protect your Quip data and improve your user experience:
USER_MANAGE
scope in the API key for that application.You can generate an access token that provides API access to your own, personal Quip account. This is useful for testing the API, automating tasks, or integrating with other services you use individually.
To generate a personal access token, visit this page: https://quip.com/dev/token
Whenever you generate a new token, all previous tokens are automatically invalidated.
Once you have a token, the easiest way to use it is via the Python Client Library, which makes most tasks a single line of code. All of the documentation below contains copy-and-paste Python code snippets to make it easier to get started.
To access to the Quip Admin and Automation APIs:
Note: These Admin APIs are available only as add-on purchases: Events API and Governance API.
To get access to the Quip Admin and Automation APIs, follow the process summarized in the diagram below. The process is described in detail in the Generate an OAuth Token section.
1. Create an API Key
a. In the Quip Admin Console create an API key and select the scopes that you need for the features in your integration.
b. Copy the client ID and client secret so you can use them to get an access token.
Note:
2. Get an Access Token
Use your preferred tool such as Postman or SoapUI to get an access token. This example uses Postman:
a. Create a request in Postman.
b. Click the Authorization tab.
c. From the Type dropdown list, select Oauth 2.0.
d. In the Configure New Token section, fill in the fields as described here:
https://platform.quip.com
https://platform.quip.com/1/oauth/login
If you're a
Virtual Private Cloud
(VPC) customer, use one of these URLs instead, depending on your
company's assigned VPC URL:https://platform.<customername>.onquip.com/1/oauth/login
orhttps://platform.quip-<customername>.com/1/oauth/login
https://platform.quip.com/1/oauth/access_token
If you're a VPC customer, use one of these URLs instead, depending
on your company's assigned VPC URL:https://platform.<customername>.onquip.com/1/oauth/access_token
orhttps://platform.quip-<customername>.com/1/oauth/access_token
e. Click Get New Access Token.
3. Get authorization from Quip
When prompted, use your admin email address and password to log into your Quip site and get an authorization token. This is required only the first time you get an access token.
4. Save the Token
In Postman, the token details are displayed. Click Use Token to save the provided token in your request and use it in your next API call.
Congratulations! You can now make Admin and Automation API calls. Follow these same instructions to get additional access tokens using API keys with the scopes required for the integrations you're building.
Note: Tokens expire every 30 days. Use the Token Endpoint to refresh your tokens before the 30-day expiration. That way your users have uninterrupted access to your integrations.
Now that you have access to our APIs, you can start building your integrations with Quip:
Questions? Ask the Quip developer community on Salesforce Stack Exchange.
Domain authentication is only available for Quip Enterprise administrators. To enable this for your company, contact us.
Domain authentication enables seamless integration for internal or pre-approved services at your company. Domain authentication is simply OAuth 2.0, but instead of end users individually approving access to each application, domain administrators pre-approve applications, and end users do not see additional authorization prompts during the OAuth authorization process.
To enable domain authentication for a third-party application:
/oauth/login
and the OAuth 2.0 token endpoint /oauth/access_token
.Returns the contents of specified blob from the thread.
ADMIN_READ
) thread_id required | string The ID of the thread that contains the desired blob. |
blob_id required | string The ID of the blob to return. |
company_id required | string The ID of the company to use. |
If-None-Match | string Header containing a 'blob_id'. If this ID matches the path parameter 'blob_id' and the blob exists, an HTTP status code 304 is returned. |
{- "error": "string",
- "error_code": 304,
- "error_description": "string"
}
Uploads an image or other blob to the given thread. Returns a url
that may be used in the content
field of
Edit Document
requests and an id
that may be used in the attachment
field of
Add a Message.
ADMIN_WRITE
) thread_id required | string The ID of the thread to add the blob to. |
blob required | string <binary> The image or blob binary. |
company_id required | string The ID of the company to use. |
{- "id": "DiPp1ZQyC8QUtvBT4vojzM",
- "url": "/blob/LeSAAAqaCfc/DiPp1ZQyC8QUtvBT4vojzM"
}
The member_ids parameter must contain a list of folder IDs and user IDs. Specified users will be added to the document and the thread will be added to the specified folders.
ADMIN_MANAGE
) thread_id required | string The ID or secret path of the thread to get information about. You can pass in either of these identifiers:
|
member_ids required | string A comma-separated list of folder IDs and user IDs. We add each user individually to the thread. We add the thread to each of the specified folder IDs. If you pass in a folder ID, use either of these folder identifiers:
The Note: For better performance, it’s recommended that you add no more than 1,000 items to a folder. There’s a maximum limit of 4,000 items per folder. Items include documents, spreadsheets, and subfolders. When your API call exceeds the suggested limit of 1,000 items, a warning message is returned in the API response. When your API call exceeds the maximum limit of 4,000 items, the request isn’t executed and the 400 error code is returned. For more information, see Folder Limits. |
{- "thread": {
- "id": "AVN9AAeqq5w",
- "author_id": "LJa9EAtQi98",
- "owning_company_id": "IMbAcASGu56",
- "thread_class": "document",
- "created_usec": 1519926805974011,
- "updated_usec": 1558224928731511,
- "title": "❗️ very important cat pics ❗️",
- "type": "document",
- "is_deleted": false,
- "is_template": false,
- "document_id": "KSRABARYWW9"
}, - "user_ids": [
- "UTUAEAiZl6B"
], - "shared_folder_ids": [
- "RKa9OAiGmsC"
], - "expanded_user_ids": [
- "PZF9EA0i0ef",
- "dHe9EABHRsb",
- "EHY9EAokwO3"
], - "invited_user_emails": [ ],
- "access_levels": {
- "PZF9EA0i0ef": {
- "access_level": "OWN"
}, - "dHe9EABHRsb": {
- "access_level": "VIEW"
}, - "EHY9EAokwO3": {
- "access_level": "EDIT"
}
}, - "html": "..."
}
Makes a copy of the document specified by the thread_id
argument.
The source document can also be treated as a template. To use the
source document as a template, the values
query argument must
contain a valid JSON dictionary that consists of string keys and
whose values are either string, numbers or other dictionaries. The
endpoint will scan the document for a text pattern like:
[[varname]]
where varname consists of a series of alphanumeric characters and underscores (_). It will then look up 'varname' in the values dictionary and replace the pattern with its value.
In addition, patterns can contain one or more dots (.) like:
[[varname1.varname2]]
In this case, the endpoint will separate the string into 'varname1'
and 'varname2'. If it finds varname1 in the first dictionary, it
will expect that value to be another dictionary and will then use
varname2 to look for another value. For example, if values
has the
following JSON representation:
{ "user": { "name": "Arnie", "age": "34" }}
The template variable [[user.name]]
will be substituted with
'Arnie'.
If the key specified in the template variable can't be found in the
values
dictionary, then the template variable pattern is left
unchanged in the document.
ADMIN_READ
ADMIN_WRITE
) Content-Type | string Example: application/x-www-form-urlencoded |
thread_id required | string The ID or secret path of the document to be copied:
|
values | string If you want to make a copy of a template and fill it in with your specified content, pass a JSON dictionary into this field. In the JSON dictionary, the keys must be strings and the values must be either strings or dictionaries. Keys can contain only the characters A-Z, a-z, 0-9, .(period) and _(underscore). For example:
|
member_ids | string Comma-separated list of user IDs of people who can access the new
thread. If you don't pass in |
folder_ids | string Comma-separated list of identifiers of the folders you want to add
the new thread to. If you don't pass in
Note: For better performance, it’s recommended that you add no more than 1,000 items to a folder. There’s a maximum limit of 4,000 items per folder. Items include documents, spreadsheets, and subfolders. When your API call exceeds the suggested limit of 1,000 items, a warning message is returned in the API response. When your API call exceeds the maximum limit of 4,000 items, the request isn’t executed and the 400 error code is returned. For more information, see Folder Limits. |
title | string The name of the new thread. The title is used as the first line of a document.
We recommend that you pass in a |
copy_annotations | boolean Default: false Determines whether to copy comments in the original thread to the new thread. Possible values are:
|
{- "thread": {
- "id": "AVN9AAeqq5w",
- "author_id": "LJa9EAtQi98",
- "owning_company_id": "IMbAcASGu56",
- "thread_class": "document",
- "created_usec": 1519926805974011,
- "updated_usec": 1558224928731511,
- "title": "❗️ very important cat pics ❗️",
- "type": "document",
- "is_deleted": false,
- "is_template": false,
- "document_id": "KSRABARYWW9"
}, - "user_ids": [
- "UTUAEAiZl6B"
], - "shared_folder_ids": [
- "RKa9OAiGmsC"
], - "expanded_user_ids": [
- "PZF9EA0i0ef",
- "dHe9EABHRsb",
- "EHY9EAokwO3"
], - "invited_user_emails": [ ],
- "access_levels": {
- "PZF9EA0i0ef": {
- "access_level": "OWN"
}, - "dHe9EABHRsb": {
- "access_level": "VIEW"
}, - "EHY9EAokwO3": {
- "access_level": "EDIT"
}
}, - "html": "..."
}
Deletes the thread with the specified ID or secret.
ADMIN_MANAGE
) thread_id required | string The ID or secret path of the thread to delete. |
wipeout | boolean Default: false Whether to permanently delete the thread. |
{ }
Incrementally modifies the content of a document.
To get the IDs of sections in an existing document, parse the HTML
returned. Every paragraph, list item, and table cell will have an HTML
id
attribute you can use in this method.
ADMIN_WRITE
) thread_id required | string The ID or secret path of the thread whose document you want to edit:
|
format | string Default: "html" Enum: "html" "markdown" Format of the |
content | string The HTML or Markdown for the content that you want to add. There's a maximum limit of 1 MB of content per request.
You can add a live app by using a
Note: We support most of the Markdown tags. The exceptions are described in the differences in the Python-Markdown implementation. |
section_id | string The ID of the part of the thread where you want to add content. Each of these types of content has its
|
document_range | string The text of the heading of the document range you want to modify. The document range includes the heading and all subheadings below it up to the next heading of the same size or larger. Required if the
|
location | integer Default: 0 Enum: 1 2 3 4 5 6 7 8 9 Where we should insert the new content.
|
{- "thread": {
- "id": "AVN9AAeqq5w",
- "author_id": "LJa9EAtQi98",
- "owning_company_id": "IMbAcASGu56",
- "thread_class": "document",
- "created_usec": 1519926805974011,
- "updated_usec": 1558224928731511,
- "title": "❗️ very important cat pics ❗️",
- "type": "document",
- "is_deleted": false,
- "is_template": false,
- "document_id": "KSRABARYWW9"
}, - "user_ids": [
- "UTUAEAiZl6B"
], - "shared_folder_ids": [
- "RKa9OAiGmsC"
], - "expanded_user_ids": [
- "PZF9EA0i0ef",
- "dHe9EABHRsb",
- "EHY9EAokwO3"
], - "invited_user_emails": [ ],
- "access_levels": {
- "PZF9EA0i0ef": {
- "access_level": "OWN"
}, - "dHe9EABHRsb": {
- "access_level": "VIEW"
}, - "EHY9EAokwO3": {
- "access_level": "EDIT"
}
}, - "html": "...",
- "section_ids": [
- "string"
]
}
Exports your specified Quip document to a DOCX file.
ADMIN_READ
) thread_id required | string The ID or secret path of the thread for the document you want to export. |
company_id required | string The ID of the company to use. |
{- "error": "string",
- "error_code": 400,
- "error_description": "string"
}
Exports your specified Quip slide deck to PDF.
ADMIN_READ
) thread_id required | string The ID or secret path of the thread for the document you want to export. |
company_id required | string The ID of the company to use. |
{- "error": "string",
- "error_code": 400,
- "error_description": "string"
}
Exports your specified Quip spreadsheet to an XLSX file.
ADMIN_READ
) thread_id required | string The ID or secret path of the thread for the document you want to export. |
company_id | string The ID of the company to use. |
{- "error": "string",
- "error_code": 400,
- "error_description": "string"
}
Retrieve details on a list of threads, as specified by external
and
link_shared
parameters. One of those parameters must be true
.
ADMIN_READ
) company_id required | string The ID of the company to use. |
external | boolean Default: false If true, returns company documents with external users. |
link_shared | boolean Default: false If true, returns company documents with external link sharing enabled. |
offset | integer >= 0 Default: 0 Number of threads to skip before returning results. |
max_size | integer Default: 1000 Maximum number of threads to return. |
[- {
- "id": "dKRAAAu7iB2",
- "title": "Welcome to Quip",
- "creation_usec": 1599591708243925,
- "owning_company_id": "cDMAcA8KJDk",
- "owner_type": "Managed",
- "company_members": 2,
- "external_members": 3
}, - {
- "id": "aIBAAA6n0yW",
- "title": "Pizza Thread 4",
- "creation_usec": 1598914920927832,
- "owning_company_id": "BCZAcAeV9Uj",
- "owner_type": "This Site",
- "company_members": 15,
- "external_members": 6
}
]
Returns basic information about a Quip thread (document, spreadsheet, or chat). This information includes things such as the ID, title, last time the thread was edited and the thread's link sharing settings.
ADMIN_READ
) id required | string The ID or secret path of the thread to get information about. You can pass in either of these identifiers:
|
company_id required | string Example: company_id={{admin_company_id}} ID of the company that owns the thread you want to get information about. |
{- "thread": {
- "author_id": "LJa9EAtQi98",
- "created_usec": 1519926805974011,
- "id": "AVN9AAeqq5w",
- "is_template": false,
- "is_deleted": false,
- "owning_company_id": "IMbAcASGu56",
- "secret_path": "klUsAqWxr8Ne",
- "title": "❗️ very important cat pics ❗️",
- "type": "DOCUMENT",
- "updated_usec": 1558224928731511
}
}
Retrieve information about a specific thread.
ADMIN_READ
) id required | string The ID or secret path of the thread to inspect. |
company_id required | string Example: company_id={{admin_company_id}} The ID of the company to use. |
{- "thread": {
- "id": "AVN9AAeqq5w",
- "author_id": "LJa9EAtQi98",
- "owning_company_id": "IMbAcASGu56",
- "thread_class": "document",
- "created_usec": 1519926805974011,
- "updated_usec": 1558224928731511,
- "title": "❗️ very important cat pics ❗️",
- "type": "document",
- "is_deleted": false,
- "is_template": false,
- "document_id": "KSRABARYWW9"
}, - "user_ids": [
- "UTUAEAiZl6B"
], - "shared_folder_ids": [
- "RKa9OAiGmsC"
], - "expanded_user_ids": [
- "PZF9EA0i0ef",
- "dHe9EABHRsb",
- "EHY9EAokwO3"
], - "invited_user_emails": [ ],
- "access_levels": {
- "PZF9EA0i0ef": {
- "access_level": "OWN"
}, - "dHe9EABHRsb": {
- "access_level": "VIEW"
}, - "EHY9EAokwO3": {
- "access_level": "EDIT"
}
}, - "html": "..."
}
Returns a list of all threads in the company along with a timestamp when they were last modified. Results will be ordered by the last overall activity in the thread.
ADMIN_READ
) Content-Type | string Example: application/x-www-form-urlencoded |
company_id required | string The ID of the company to use. |
page | integer Default: 0 Number used for pagination. |
since_timestamp | integer <int64> Minimum last modified timestamp (in seconds since UNIX epoch) for fetched threads. |
until_timestamp | integer <int64> Maximum last modified timestamp (in seconds since UNIX epoch) for fetched threads. |
sorted_by | string Default: "ASC" Enum: "ASC" "DESC" Results will be sorted in this direction. |
include_deleted | boolean Default: false If true, includes deleted threads. |
{- "company_id": "string",
- "last_timestamp": 0,
- "thread_ids": [
- "string"
], - "sorted_by": "ASC",
- "next_page": 0
}
Returns the statuses and PDF URLs after a request you made to export multiple Quip threads to PDF using the Create Bulk Export PDFs Request API method. You can export multiple Quip threads to PDF to fulfill eDiscovery and other regulatory requirements and archive threads in other systems. You can also use one of your other systems to search all PDF thread data, including comments, and export the matching results.
ADMIN_READ
) company_id required | string Example: company_id=IMbAcASGu56 Identifier of the company whose Quip threads you want to export to PDF. Threads include: documents and spreadsheets, chats (2-person and group), and Slack channel conversations linked to Quip (also called "channels"). |
request_id required | string Example: request_id=AMXAEA8lSEj:1644470492776 Identifier returned by the Create Export PDF Request API method. |
{- "completed": true,
- "overall_status": {
- "processing": 0,
- "success": 2,
- "failure": 0,
- "total": 2
}, - "outputs": {
- "property1": {
- "status": "SUCCESS",
- "message": "string"
}, - "property2": {
- "status": "SUCCESS",
- "message": "string"
}
}
}
Submits a request to asynchronously export multiple Quip threads to
PDF. This call returns a request_id
. Pass that request_id
into the
Retrieve Bulk Export PDF Response call to get the PDF URL and
request status for each PDF.
Sample use cases: You can export Quip threads to PDF to fulfill eDiscovery and other regulatory requirements and archive threads in other systems. You can also use one of your other systems to search all PDF thread data, including comments, and export the matching results.
Note:
ADMIN_READ
) Content-Type | string Example: application/json |
company_id required | string Identifier of the company whose Quip threads you want to export to PDF. Threads include: documents and spreadsheets, chats (2-person and group), and Slack channel conversations linked to Quip (also called "channels"). |
ids required | Array of strings A comma-separated list of identifiers ( You can get the |
include_conversations | boolean Determines whether to include the conversation history associated with each Quip document or spreadsheet that you want to export to PDF. The conversation history appears at the end of each PDF. Allowable values for this field:
|
{- "company_id": "IMbAcASGu56",
- "ids": [
- "UcZ9AAhvqrc",
- "AVN9AAeqq5w"
], - "include_conversations": true
}
{- "request_id": "AMXAEA8lSEj:1644470492776"
}
Bulk variant of the Get Thread endpoint.
Returns basic information about multiple Quip threads (documents, spreadsheets, or chats). This information for each thread includes things such as the ID, title, last time the thread was edited and the thread's link sharing settings.
ADMIN_READ
) ids required | string The IDs or secret paths of the threads to get information about. You can pass in a maximum of 1000 of either of these identifiers:
|
company_id required | string Example: company_id={{admin_company_id}} ID of the company that owns the thread you want to get information about. |
{- "klUsAqWxr8Ne": {
- "author_id": "LJa9EAtQi98",
- "created_usec": 1519926805974011,
- "id": "AVN9AAeqq5w",
- "is_deleted": false,
- "is_template": false,
- "owning_company_id": "IMbAcASGu56",
- "secret_path": "klUsAqWxr8Ne",
- "title": "❗️ very important cat pics ❗️",
- "type": "DOCUMENT",
- "updated_usec": 1558224928731511
}, - "abcAAA78901": {
- "error_description": "Not found: 'abcAAA78901'"
}
}
Retrieve details on a list of threads
ADMIN_READ
) company_id required | string Example: company_id=DYTAcAiIFUr The ID of the company to use. |
ids required | string Example: ids=UcZ9AAhvqrc,AVN9AAeqq5w A comma separated list of thread IDs. |
{- "AVN9AAeqq5w": {
- "thread": {
- "author_id": "LJa9EAtQi98",
- "thread_class": "document",
- "id": "AVN9AAeqq5w",
- "created_usec": 1519926805974011,
- "updated_usec": 1558224928731511,
- "title": "❗️ very important cat pics ❗️",
- "type": "document",
- "is_deleted": false
}, - "user_ids": [ ],
- "shared_folder_ids": [
- "RKa9OAiGmsC"
], - "expanded_user_ids": [
- "PZF9EA0i0ef",
- "dHe9EABHRsb",
- "EHY9EAokwO3"
], - "invited_user_emails": [ ],
- "access_levels": {
- "PZF9EA0i0ef": {
- "access_level": "OWN"
}, - "dHe9EABHRsb": {
- "access_level": "VIEW"
}, - "EHY9EAokwO3": {
- "access_level": "EDIT"
}
}, - "html": "..."
}, - "UcZ9AAhvqrc": {
- "thread": {
- "author_id": "KLf9EAPrxbs",
- "thread_class": "document",
- "id": "UcZ9AAhvqrc",
- "created_usec": 1553875833997942,
- "updated_usec": 1558416856485215,
- "title": "LFG",
- "sharing": {
- "company_id": "eaM9cAYW16x",
- "company_mode": "EDIT"
}, - "type": "document",
- "is_deleted": false
}, - "user_ids": [ ],
- "shared_folder_ids": [
- "RKH9OAELPKV"
], - "expanded_user_ids": [
- "PZF9EA0i0ef",
- "IPX9EAmMSP0",
- "ICe9EAuECt9",
- "AOR9EACeKjK"
], - "invited_user_emails": [ ],
- "access_levels": {
- "PZF9EA0i0ef": {
- "access_level": "COMMENT"
}, - "IPX9EAmMSP0": {
- "access_level": "VIEW"
}, - "ICe9EAuECt9": {
- "access_level": "EDIT"
}, - "AOR9EACeKjK": {
- "access_level": "OWN"
}
}, - "html": "<h1 id='UcZ9CAK0DQz'>LFG</h1>\n<p id='UcZ9CA91kZu' class='line'></p>\n<p id='UcZ9CAGumhq' class='line'></p>\n"
}
}
Creates a document, spreadsheet, or slides, returning the new thread in the same format as Get Thread.
Note that for slides threads, this endpoint currently only supports creating a bare-bones, one-slide deck with a given title. Copy a Document or Template provides fuller slides functionality, allowing automatic creation of a new slide deck adapted from an existing one.
ADMIN_WRITE
) content required | string The HTML or Markdown content of the new document. The content length must not exceed 1MB. NOTE: When creating a spreadsheet, the content must be surrounded by
an HTML NOTE: In the current implementation, the parser treats |
company_id required | string The ID of the company to use. |
format | string Default: "html" Enum: "html" "markdown" Format of the supplied document content. |
title | string The title of the new document. If not specified, we infer the title from the first content of the document, for example, the first heading. The title must not exceed 10 KB. |
member_ids | string A comma-separated list of folder IDs or user IDs. The document will be placed in the specified folders, and any individual users listed will be granted individual access to the document. If this argument is not given, the document is created in the authenticated user's Private folder. |
type | string Default: "document" Enum: "document" "spreadsheet" The type of document to create. |
{- "thread": {
- "id": "AVN9AAeqq5w",
- "author_id": "LJa9EAtQi98",
- "owning_company_id": "IMbAcASGu56",
- "thread_class": "document",
- "created_usec": 1519926805974011,
- "updated_usec": 1558224928731511,
- "title": "❗️ very important cat pics ❗️",
- "type": "document",
- "is_deleted": false,
- "is_template": false,
- "document_id": "KSRABARYWW9"
}, - "user_ids": [
- "UTUAEAiZl6B"
], - "shared_folder_ids": [
- "RKa9OAiGmsC"
], - "expanded_user_ids": [
- "PZF9EA0i0ef",
- "dHe9EABHRsb",
- "EHY9EAokwO3"
], - "invited_user_emails": [ ],
- "access_levels": {
- "PZF9EA0i0ef": {
- "access_level": "OWN"
}, - "dHe9EABHRsb": {
- "access_level": "VIEW"
}, - "EHY9EAokwO3": {
- "access_level": "EDIT"
}
}, - "html": "..."
}
All external users will be removed from the thread.
ADMIN_MANAGE
) Content-Type | string Example: application/x-www-form-urlencoded |
company_id required | string The ID of the company to use. |
thread_id required | string The ID of the thread from which you want to remove all external users from. |
{- "thread": {
- "id": "AVN9AAeqq5w",
- "author_id": "LJa9EAtQi98",
- "owning_company_id": "IMbAcASGu56",
- "thread_class": "document",
- "created_usec": 1519926805974011,
- "updated_usec": 1558224928731511,
- "title": "❗️ very important cat pics ❗️",
- "type": "document",
- "is_deleted": false,
- "is_template": false,
- "document_id": "KSRABARYWW9"
}, - "user_ids": [
- "UTUAEAiZl6B"
], - "shared_folder_ids": [
- "RKa9OAiGmsC"
], - "expanded_user_ids": [
- "PZF9EA0i0ef",
- "dHe9EABHRsb",
- "EHY9EAokwO3"
], - "invited_user_emails": [ ],
- "access_levels": {
- "PZF9EA0i0ef": {
- "access_level": "OWN"
}, - "dHe9EABHRsb": {
- "access_level": "VIEW"
}, - "EHY9EAokwO3": {
- "access_level": "EDIT"
}
}, - "html": "..."
}
The member_ids parameter must contain a list of folder IDs and user IDS. Specified users will be removed from the thread and the thread will be removed from specified folders.
ADMIN_MANAGE
) thread_id required | string The ID or secret path of the thread from which you want to remove folders and users. |
member_ids required | string A comma-separated list of folder IDs and user IDs. We remove each user ID individually from the thread. We remove the thread from each of the specified folder IDs. |
company_id required | string The ID of the company to use. |
{- "thread": {
- "id": "AVN9AAeqq5w",
- "author_id": "LJa9EAtQi98",
- "owning_company_id": "IMbAcASGu56",
- "thread_class": "document",
- "created_usec": 1519926805974011,
- "updated_usec": 1558224928731511,
- "title": "❗️ very important cat pics ❗️",
- "type": "document",
- "is_deleted": false,
- "is_template": false,
- "document_id": "KSRABARYWW9"
}, - "user_ids": [
- "UTUAEAiZl6B"
], - "shared_folder_ids": [
- "RKa9OAiGmsC"
], - "expanded_user_ids": [
- "PZF9EA0i0ef",
- "dHe9EABHRsb",
- "EHY9EAokwO3"
], - "invited_user_emails": [ ],
- "access_levels": {
- "PZF9EA0i0ef": {
- "access_level": "OWN"
}, - "dHe9EABHRsb": {
- "access_level": "VIEW"
}, - "EHY9EAokwO3": {
- "access_level": "EDIT"
}
}, - "html": "..."
}
Returns all documents that contain words specified in the "query" parameter that belong to the company specified with company_id.
Additional rate limits, separate from overall Admin API Rate Limit, are imposed for paginating over admin search results.
ADMIN_READ
) company_id required | string Example: company_id=DYTAcAiIFUr The unique ID of the company to use. |
query required | string Example: query=report A text string containing words delimited by spaces used to match thread content or titles. |
cursor | string A pointer to the next page of data to return. Use a cursor to
incrementally get additional pages of data. When you call this
API method for the first time, leave the |
limit | number The maximum number of items to return in the same call. |
{- "company_id": "string",
- "thread_ids": [
- "string"
]
}
Returns all documents that contain words specified in the "query" parameter that belong to users in the company specified by company_id.
Additional rate limits, separate from overall Admin API Rate Limit, are imposed for paginating over admin search results.
ADMIN_READ
) company_id required | string Example: company_id=DYTAcAiIFUr The unique ID of the company to use. |
query required | string Example: query=report A text string containing words delimited by spaces used to match thread content or titles. |
page | integer Default: 0 Number used for pagination. |
{- "company_id": "string",
- "thread_ids": [
- "string"
], - "more_to_read": true,
- "next_page": 1
}
Delete a single message.
ADMIN_WRITE
) company_id required | string The ID of the company to use. |
message_id required | string The ID of the message to delete. |
{ }
Returns a message with the given message ID.
ADMIN_READ
) message_id required | string The message ID to view the message for. |
company_id required | string The ID of the company to use. |
[- {
- "id": "FCKADA33rNg",
- "author_id": "UTUAEAiZl6B",
- "author_name": "Jane Doe",
- "created_usec": 1632348632519081,
- "updated_usec": 1632348632596233,
- "visible": true,
- "text": "string",
- "files": [
- {
- "hash": "vOTFW_A3Cp1zXNSjqsEIoA",
- "name": "hello.txt"
}
], - "annotation": {
- "id": "string",
- "highlighted_section_ids": [
- "string"
]
}, - "parts": [
- [
- "system",
- "HTML1"
], - [
- "status",
- "HTML2"
]
], - "apparent_user": {
- "user_id": "string"
}, - "diff_groups": [
- {
- "diffs": [
- {
- "rtml": "Cats are <diff class=\"insert\">sometimes</diff>\n<diff class=\"delete\">usually</diff> friendly.\n"
}
]
}
], - "like_user_ids": [
- "string"
], - "mention_user_ids": [
- "string"
]
}
]
Returns a list of the most recent messages for the given thread, ordered reverse-chronologically. Can also be used to get edit history for a document.
ADMIN_READ
) thread_id required | string The thread ID to view messages for. |
company_id required | string The ID of the company to use. |
count | integer [ 1 .. 100 ] Default: 25 Number of messages to return. |
max_created_usec | integer <int64> If given, we return messages updated before the given |
sorted_by | string Default: "DESC" Enum: "ASC" "DESC" ASC or DESC. Changes the order of the returned messages. |
sort_by | string Default: "DESC" Enum: "ASC" "DESC" Alias for sorted_by |
message_type | string Default: "message" Enum: "message" "edit" Determines what will be returned by this call.
|
include_deleted | boolean Default: false If true, response includes deleted messages. |
[- {
- "id": "FCKADA33rNg",
- "author_id": "UTUAEAiZl6B",
- "author_name": "Jane Doe",
- "created_usec": 1632348632519081,
- "updated_usec": 1632348632596233,
- "visible": true,
- "text": "string",
- "files": [
- {
- "hash": "vOTFW_A3Cp1zXNSjqsEIoA",
- "name": "hello.txt"
}
], - "annotation": {
- "id": "string",
- "highlighted_section_ids": [
- "string"
]
}, - "parts": [
- [
- "system",
- "HTML1"
], - [
- "status",
- "HTML2"
]
], - "apparent_user": {
- "user_id": "string"
}, - "diff_groups": [
- {
- "diffs": [
- {
- "rtml": "Cats are <diff class=\"insert\">sometimes</diff>\n<diff class=\"delete\">usually</diff> friendly.\n"
}
]
}
], - "like_user_ids": [
- "string"
], - "mention_user_ids": [
- "string"
]
}
]
Returns information about the specified user. You can use that information for eDiscovery and eArchiving purposes. For example, you can export the returned user data to your archiving system.
See also: Folders (Quip)
In this example, we're getting information about a user with ID
ABCEAmpgev at a company with ID DEFCAcAV4DT7.
We're also sorting the returned shared_folder_ids
and
group_folder_ids
lists in ascending order by created_usec
(timestamp for when the folder was created).
GET https://platform.quip.com/2/admin/users/ABCEAmpgev
Content-Type: application/json
Authorization: Bearer {{ABCSampleAccessToken}}
{
"company_id": "DEFAcAV4DT7",
"sort_by": "created_usec",
"sort_order": "asc"
}
ADMIN_READ
) id required | string ID of the user whose information you want to get. |
company_id required | string ID of the company that the specified user works for. For your
own company, you can find the |
shared_thread_id | string ID of a thread that's either shared with a user at another
company or shared by a user at another company. Pass in the ID
of that user as a path parameter in your API call. For an
external user, this API method returns only the
|
sort_by | string Enum: "title" "created_usec" "updated_usec" Determines which field to sort the |
sort_order | string Default: "asc" Enum: "asc" "desc" Determines what order to sort the |
{- "id": "UTUAEAiZl6B",
- "name": "Jane Doe",
- "company_id": "IMbAcASGu56",
- "emails": [
- "jane@example1.com",
- "jane@example2.com"
], - "disabled": false,
- "created_usec": 1632022665732239,
- "is_robot": false,
- "affinity": 0.43,
- "chat_thread_id": "adHAAAKik9A",
- "desktop_folder_id": "AGWAOAhT3qk",
- "archive_folder_id": "BGWAOAhT3qk",
- "starred_folder_id": "CGWAOAhT3qk",
- "private_folder_id": "DGWAOAhT3qk",
- "trash_folder_id": "EGWAOAhT3qk",
- "shared_folder_ids": [
- "FGWAOAhT3qk",
- "GGWAOAhT3qk"
], - "group_folder_ids": [
- "HGWAOAhT3qk",
- "IGWAOAhT3qk"
]
}
Returns information about Quip threads owned by the specified user. Threads include: documents and spreadsheets, chats (2-person and group), Slack channel conversations linked to Quip (also called "channels"), and slides. You can use the returned information for eDiscovery and eArchiving purposes. For example, you can pass the returned thread IDs into another API call to export the threads to .docx or PDF files. Then you can save the exported files in your archiving system.
In this first example, we're getting a list of the first 50 threads
owned by a user with ID ABCEAmpgev at a company with ID
DEFAcAV4DT7. Since the user owns more that 50 threads, we'll
get a next_cursor
value in the response and pass that value into
the next call in step 2.
GET https://platform.quip.com/2/admin/users/ABCEAmpgev/threads?company_id=DEFAcAV4DT7&limit=50
Authorization: Bearer {{ABCSampleAccessToken}}
In this example, we're getting a list of the next 50 threads owned
by a user with ID ABCEAmpgev at a company with ID DEFAcAV4DT7.
We're passing in the next_cursor
value returned by the previous
call from step 1.
GET https://platform.quip.com/2/admin/users/ABCEAmpgev/threads?company_id=DEFAcAV4DT7&limit=50&cursor=bmV4dCBjdXJzb3I
Authorization: Bearer {{ABCSampleAccessToken}}
ADMIN_READ
) id required | string ID of the user whose information you want to get. |
company_id required | string ID of the company that the specified user works for. For your
own company, you can find the |
threads_meta | boolean Default: false Determines whether to include basic thread data in the response. Allowable values for this field are:
|
include_deleted | boolean Default: false Determines whether to return threads that the specified user has been removed from. Allowable values for this field are:
|
thread_ids | string Example: thread_ids=UcZ9AAhvqrc,AVN9AAeqq5w Comma-separated list of thread IDs owned by the specified user. You can pass in either of these identifiers:
|
limit | integer The maximum number of threads to return. You can pass in a maximum limit of 1,000. If you leave the limit field blank, this call returns a maximum of 1,000 threads. |
cursor | string A pointer to the next page of thread data to return. Use a cursor
to incrementally get the next set of thread data. When you call
this API method for the first time, leave the cursor field blank.
For all calls after that first one, pass in the Note: Each |
{- "threads": {
- "property1": { },
- "property2": { }
}, - "response_metadata": {
- "next_cursor": "Y3Vyc29yVG9OZXh0UGFnZQ=="
}
}
Returns a map from user IDs to user objects for users in the company. User objects contain the name, emails, and ID of each user.
ADMIN_READ
) company_id required | string The ID of the company to use. |
count | integer [ 1 .. 25000 ] Default: 5000 Maximum number of users to return. |
offset | integer Default: 0 Number of users to skip before returning results. Used for pagination. |
{- "UTUAEAiZl6B": {
- "id": "UTUAEAiZl6B",
- "name": "John Doe",
- "emails": [
- {
- "address": "john@example.com"
}, - {
- "address": "john@example2.com"
}
]
}, - "BTAAEAiGl7B": {
- "id": "BTAAEAiGl7B",
- "name": "Jane Doe",
- "emails": [
- {
- "address": "jane@example.com"
}
]
}
}
Gets the read-only status of users.
ADMIN_READ
) user_ids | Array of strings [ 1 .. 1000 ] items Example: user_ids=SSSAEAOPHIA,QUEAEAENBEY A comma separated list of user IDs. |
{- "read_only": [
- "string"
], - "non_read_only": [
- "string"
], - "not_found": [
- "string"
]
}
Marks users as read-only.
ADMIN_MANAGE
) user_ids required | Array of strings [ 1 .. 1000 ] items A list of user IDs. |
read_only required | boolean If true, all users in |
{- "user_ids": [
- "SSSAEAOPHIA",
- "QUEAEAENBEY"
], - "read_only": true
}
[- {
- "user_id": "SSSAEAOPHIA",
- "result": "SUCCESS"
}
]
Get information about any folder.
ADMIN_READ
) id required | string Example: RKH9OAELPKV The ID of the folder to get information for. |
company_id required | string Example: company_id=LbdAcAwVVIA The ID of the company to use. |
include_chats | boolean If |
{- "folder": {
- "title": "Quip",
- "creator_id": "KLf9EAPrxbs",
- "id": "RKH9OAELPKV",
- "created_usec": 1497474937520657,
- "updated_usec": 1558247457514983,
- "folder_type": "shared",
- "inherit_mode": "inherit",
- "sharing": {
- "company_mode": "EDIT",
- "company_id": "LbdAcAwVVIA"
}
}, - "member_ids": [
- "YNK9EAU71mc",
- "PEW9EAtTnrV",
- "aBd9EAl8R0H",
- "MVT9EACSny8",
- "LJa9EAtQi98",
- "ROS9EAGOj1u"
], - "children": [
- {
- "thread_id": "aXM9AASQOGr"
}, - {
- "thread_id": "cYX9AAfS6ma"
}, - {
- "thread_id": "WVD9AA1grdh"
}
]
}
Bulk variant of the Get Folder endpoint. Returns an object mapping IDs to folder objects.
ADMIN_READ
) ids required | string Example: ids=BULAOADdLWL,CULAOADdLWL A comma-separated list of folder IDs. |
company_id required | string Example: company_id=LbdAcAwVVIA The ID of the company to use. |
include_chats | boolean If |
{- "property1": {
- "folder": {
- "title": "Quip",
- "creator_id": "KLf9EAPrxbs",
- "id": "RKH9OAELPKV",
- "created_usec": 1497474937520657,
- "updated_usec": 1558247457514983,
- "folder_type": "shared",
- "inherit_mode": "inherit",
- "sharing": {
- "company_mode": "EDIT",
- "company_id": "LbdAcAwVVIA"
}
}, - "member_ids": [
- "YNK9EAU71mc",
- "PEW9EAtTnrV",
- "aBd9EAl8R0H",
- "MVT9EACSny8",
- "LJa9EAtQi98",
- "ROS9EAGOj1u"
], - "children": [
- {
- "thread_id": "aXM9AASQOGr"
}, - {
- "thread_id": "cYX9AAfS6ma"
}, - {
- "thread_id": "WVD9AA1grdh"
}
]
}, - "property2": {
- "folder": {
- "title": "Quip",
- "creator_id": "KLf9EAPrxbs",
- "id": "RKH9OAELPKV",
- "created_usec": 1497474937520657,
- "updated_usec": 1558247457514983,
- "folder_type": "shared",
- "inherit_mode": "inherit",
- "sharing": {
- "company_mode": "EDIT",
- "company_id": "LbdAcAwVVIA"
}
}, - "member_ids": [
- "YNK9EAU71mc",
- "PEW9EAtTnrV",
- "aBd9EAl8R0H",
- "MVT9EACSny8",
- "LJa9EAtQi98",
- "ROS9EAGOj1u"
], - "children": [
- {
- "thread_id": "aXM9AASQOGr"
}, - {
- "thread_id": "cYX9AAfS6ma"
}, - {
- "thread_id": "WVD9AA1grdh"
}
]
}
}
The Events API allows you to get information about your company’s Quip activity such as the creation or modification of content. This helps you to:
These four API methods are available in the Events API and they’re described in detail in the reference documentation:
To use the Events API, you must:
For best results when you use the Events API, we recommend that you:
To use the Events API, follow these steps:
Step | Historical Events | Near Real-time Events |
---|---|---|
1 | Call the Get an Event Cursor API method. | Call the Get a Cursor for Near Real-Time Events API method. |
2 | Call Get Next Batch of Events and pass in the next_cursor value returned in step 1. |
Call Get Next Batch of Near Real-Time Events and pass in the next_cursor value returned in step 1. |
3 | Call Get Next Batch of Events again and pass in the next_cursor value returned by step 2. |
Call Get Next Batch of Near Real-Time Events again and pass in the next_cursor value returned by step 2. |
4 | Repeat step 3 until the more_to_read field returns a value of false . |
Repeat step 3 until the more_to_read field returns a value of false . |
5 | Repeat the process from step 1 every two hours (or at your desired interval longer than two hours). | After a short duration (more or less than one minute), repeat step 3 with the most recently retrieved cursor to get any new events. Repeat in an ongoing loop to stay current with events being generated by your Quip site. |
Event Type | Description |
---|---|
create-thread | A thread was created. Additional data on the type of creation can be found in sub_action; the options are: create-new, create-import, create-copy |
open-thread | A thread was opened |
delete-thread | A thread was deleted |
share-thread | Additional members were added to a thread. Additional data on the type of sharing can be found in sub_action |
unshare-thread | Members of a thread were removed |
move-thread | A thread was moved from one folder into another folder, a thread is deleted and moved to trash, or a thread is restored from trash and moved back to a folder |
rename-thread | A thread was renamed |
delete-message | A message was deleted |
edit-message | A message was edited |
create-message | A message was created and sent. Additional data on the type of message can be found in sub_action. The options are: annotation, sending message in conversation pane, sending a direct message, and ending an edit session, which sends edits to the conversation pane |
create-folder | A folder was created |
delete-folder | A folder was deleted |
open-folder | A folder was opened |
move-folder | A folder was moved |
copy-folder | A folder was copied |
share-folder | A folder was shared |
unshare-folder | Members of a folder were removed |
rename-folder | A folder was renamed |
login | A site member logged in |
print-document | A thread was printed |
export-thread | A thread was exported |
upload_blob-thread | A file was uploaded to a thread |
create-user | A site member was created |
disable-user | A site member was disabled |
admin_edit | An admin took an action in the admin console |
admin_api_call | An admin API endpoint was accessed |
create-admin_api_access | A user was granted access to the Admin API |
delete-admin_api_access | A user had Admin API access revoked |
restore-thread | Thread removed from the trash by a user, restoring access |
create-policy | A data retention or data hold policy was created |
retire-policy | A data retention or data hold policy was retired |
attach-policy | A data retention or data hold policy was attached to a thread |
execute-policy | The policy action on a data hold or data retention was executed |
create-link | A shareable link for a thread or folder was created |
edit-link | A shareable link's access to a thread or folder was changed |
delete-link | A shareable link for a thread was or folder disabled |
download_blob-thread | A file attachment of a thread downloaded by user |
search_threads | A search query across multiple threads. |
receive-invite | A site member was added to a thread |
receive_in_folder-thread | A thread was added to a folder your company owns |
receive-folder | A site member was added to a folder |
joined_by_link-thread | A member joined a thread your company owns by link share |
join-thread | A site member joins a thread by link thread |
create-link | A link for a thread or folder your company was created |
joined_by_link-folder | A member joined a folder your company owns by link share |
join-folder | A site member joins a folder by link thread |
Gets a starting cursor that you can use to search for historical
events that happened between two hours and 30 days ago. The cursor is
a pointer to a particular time interval. Pass the next_cursor
value
returned by this API method into a
Get Next Batch of Events API call to obtain
the historical events for your specified time interval.
For better performance, we recommend that you:
user_id
or event_types
or both.since_timestamp
and
until_timestamp
.ADMIN_READ
) company_id required | string Example: company_id=IMbAcASGu56 The ID of the company associated with the events. You can find the |
since_timestamp required | integer <int64> Example: since_timestamp=1554241192914801 The Unix timestamp in microseconds for the start date and time of the interval in which to search for events. This timestamp must be earlier than two hours before the current time. You can use this epoch converter to change a human-readable date and time to a Unix timestamp. Add six zeros to the end of the Unix timestamp to convert the timestamp to microseconds. For example, if the Unix timestamp is 1636573582, that's 1636573582000000 in microseconds. |
until_timestamp required | integer <int64> Example: until_timestamp=1554244792914801 The Unix timestamp in microseconds for the end date and time of the interval in which to search for events. This timestamp must be no more than 30 days before the current date.
See the description of the |
user_id | string Example: user_id=UTUAEAiZl6B The ID of the user whose activities you want to retrieve. If you leave this field blank, then activities for all users are returned when you call the Get Next Batch of Events API method. |
event_types | string Example: event_types=create_thread,open-thread A comma-separated list of event types to retrieve. Event types are defined in the Event Types table. If you leave this field blank, then all supported event types are returned when you call the Get Next Batch of Events API method. |
count | integer Default: 100 Maximum number of events to retrieve. You can request a maximum of 500 events. |
{- "next_cursor": "eyJjdXJzb3JfdmVyc2lvbiI6MSwic..."
}
Gets a starting cursor that you can use to search for near real-time
events that happened within the past two hours. The cursor is a
pointer to a particular time interval. Pass the next_cursor
value
returned by this API method into a
Get Next Batch of Near Real-Time Events
API call to obtain the events that happened within the past two
hours.
For better performance, we recommend that you filter your request by
user_id
, event_types
, or both.
Note: The next_cursor
values returned by these API methods
expire 24 hours after creation:
ADMIN_READ
) company_id required | string The ID of the company to get events for. You can find the |
user_id | string The ID of the user whose activities you want to search for. If you leave this field blank, then activities for all users are returned when you call the Get Next Batch of Near Real-Time Events API method. |
event_types | string Example: event_types=create_thread,open-thread A comma-separated list of event types to search for. Event types are defined in the Event Types table. If you leave this field blank, then all supported event types are returned when you call the Get Next Batch of Near Real-Time Events API method. |
{- "next_cursor": "eyJjdXJzb3JfdmVyc2lvbiI6MSwic..."
}
Returns historical events based on the query parameters you passed in when you called the Get an Event Cursor API method.
ADMIN_READ
) company_id required | string The ID of the company associated with the events. You can find the |
cursor required | string Example: cursor=eyJjdXJzb3JfdmVyc2lvbiI6MSwic... A cursor you can use to retrieve historical events. When you call this API method for the first time after calling Get an Event Cursor, pass in the |
{- "events": [
- {
- "thread_id": "string",
- "thread__author_id": "string",
- "user_id": "string",
- "company_id": "string",
- "id": "string",
- "time_usec": 0,
- "ip": "string",
- "event": "create-thread",
- "session_id": "string",
- "user_agent": "string",
- "device": "string",
- "quip_version": "string",
- "action": "create",
- "sub_action": "string",
- "object": "thread",
- "child_object": "string"
}
], - "more_to_read": true,
- "next_cursor": "fyJjdXJzb3JfdmVyc2lvbiI6MSwic..."
}
Returns near real-time events based on the query parameters you passed in when you called the Get a Cursor for Near Real-Time Events API method.
ADMIN_READ
) company_id required | string The ID of the company to get events for. You can find the |
cursor required | string Example: cursor=eyJjdXJzb3JfdmVyc2lvbiI6MSwic... A cursor you can use to retrieve near real-time events that
happened within the past two hours. When you call this API method
for the first time after calling
Get a Cursor for Near Real-Time Events,
pass in the Note: This next_cursor value expires 24 hours after creation. |
{- "events": [
- {
- "thread_id": "string",
- "thread__author_id": "string",
- "user_id": "string",
- "company_id": "string",
- "id": "string",
- "time_usec": 0,
- "ip": "string",
- "event": "create-thread",
- "session_id": "string",
- "user_agent": "string",
- "device": "string",
- "quip_version": "string",
- "action": "create",
- "sub_action": "string",
- "object": "thread",
- "child_object": "string"
}
], - "more_to_read": true,
- "next_cursor": "fyJjdXJzb3JfdmVyc2lvbiI6MSwic..."
}
Quarantine a given object, either a message, document, or blob. Quarantining a document hides all document content behind a quarantine notice and blocks all edits. Quarantining a message hides all message content behind a quarantine notice. Quarantining a blob hides the blob from its thread.
ADMIN_MANAGE
) company_id required | string The ID of the company to use. |
object_id required | string The ID of the thread (for a document), message, or blob to quarantine. |
blob_thread_id | string If quarantining a blob, this is the ID of the thread the blob belongs to. |
{- "object_id": "AuINVs2WcPGAzNG04GDu8Q"
}
Remove a document or message from quarantine. This will restore its content to its pre-quarantine state.
ADMIN_MANAGE
) company_id required | string Example: company_id=IMbAcASGu56 The company to use |
object_id required | string Example: object_id=AuINVs2WcPGAzNG04GDu8Q The ID of the thread (for a document), message, or blob to remove from quarantine. |
blob_thread_id | string Example: blob_thread_id=LDOAAAHxvUo If removing a blob from quarantine, this is the ID of the thread the blob belongs to. |
{- "object_id": "AuINVs2WcPGAzNG04GDu8Q"
}
Returns information about a company you are collaborating with, including the threads you are collaborating on.
ADMIN_READ
) external_company_id required | string The ID company to get information for. |
company_id required | string The ID of the company to use. |
offset | integer Default: 0 The number of shared threads to skip before returning results. Used for pagination. |
count | integer Default: 1000 The maximum amount of shared thread IDs to return. |
{- "company_name": "Salesforce",
- "type": "External",
- "shared_thread_count": 5,
- "shared_thread_ids": [
- "VbWAAAZNyvi",
- "VbWAAAZNyvj"
], - "new_offset": 2
}
Returns all companies you are collaborating with
ADMIN_READ
) company_id required | string The company to use. |
[- {
- "company_id": "MMeAcAoWgkU",
- "company_name": "Salesforce",
- "type": "External",
- "number_of_shared_threads": 2
}, - {
- "company_id": "cDMAcA8KJDk",
- "company_name": "Quip",
- "type": "Managed",
- "number_of_shared_threads": 1
}
]
Returns a list of all managed site IDs for the admin's company.
ADMIN_MANAGE
) company_id required | string The ID of the company to use. |
[- "MMeAcAoWgkU",
- "AMeAcAoWgkU"
]
Creates a batch of new managed sites for the admin's company. The request body should consist of either one site object or a list of site objects in JSON format.
ADMIN_MANAGE
) Content-Type | string Example: application/json |
company_id required | string The ID of the parent company. |
name required | string The name of the new managed site. |
subdomain required | string The subdomain of the new managed site. |
site_type required | string Enum: "partner" "testing" Determines whether the new site will be for testing. |
add_site_to_external_sharing_allowlist | boolean Default: true If true, restricts external sharing to only your managed site's parent company. |
only_able_to_share_with_main_site | boolean Default: true If true, this site will be added to its parent company's external sharing allowlist. |
[- {
- "company_id": "IMbAcASGu56",
- "name": "Quip",
- "subdomain": "quip",
- "site_type": "partner",
- "add_site_to_external_sharing_allowlist": true,
- "only_able_to_share_with_main_site": true
}
]
{- "fYaAcA9bnZm": {
- "name": "test-name",
- "subdomain": "test-subdomain"
}, - "EUeAcABSe7a": {
- "name": "red",
- "subdomain": "red"
}
}
Disables a batch of managed sites.
ADMIN_MANAGE
) managed_company_ids required | string Example: managed_company_ids=fYaAcA9bnZm,EUeAcABSe7a A comma-separated list of managed companies to disable. |
parent_company_id required | string The ID of the managed sites' parent company. |
{- "disabled_company_ids": [
- "fYaAcA9bnZm",
- "EUeAcABSe7a"
]
}
Returns the admin role ID and admin role name for a user.
ADMIN_READ
) company_id required | string The ID of the company to use. |
user_id required | string The ID of the user whose admin role to inspect. |
[- {
- "admin_role_id": "1",
- "admin_role_name": "Site Admin"
}
]
Updates a given user's admin role.
ADMIN_WRITE
) company_id required | string The ID of the company to use. |
user_id required | string The ID of user whose admin role will be set. |
admin_role_id required | string The ID of the admin role to set the user to. "1" is the ID for the Site Admin role and "2" is the ID for the Super Admin role. Any other ID will be considered a custom admin role. |
{ }
Removes a given user's admin role and removes them as an admin.
ADMIN_WRITE
) company_id required | string The ID of the company to use. |
user_id required | string The ID of the user whose admin role will be removed. |
{ }
Returns a list of all the admin role ids and admin role names.
ADMIN_READ
) company_id required | string The ID of the company to list admin roles for. |
[- {
- "admin_role_id": "1",
- "admin_role_name": "Site Admin"
}, - {
- "admin_role_id": "2",
- "admin_role_name": "Super Admin"
}
]
Data hold policies prevent company content from being deleted on a per-user basis. Data holds apply to all threads accessed by the users specified in the policy during the policy's active period.
Data retention policies enable an admin to control how long data is retained within a Quip site. Using various settings, admins can either retain content for a set amount of time prior to enabling users to delete it, or they can use data retention rules to automatically remove stale content from their Quip site.
Returns the data hold policy.
ADMIN_MANAGE
) company_id required | string Example: company_id=IMbAcASGu56 The ID of the company the data hold policy belongs to. |
policy_id required | string Example: policy_id=2 The ID of the policy to get. |
{- "id": "1",
- "name": "PLT3 Hold",
- "start_date": "2021-09-23",
- "end_date": "2021-10-23",
- "apply_to": [
- "jane.doe@example.com",
- "john.doe@example.com"
], - "state": "PENDING"
}
Creates a data hold policy.
ADMIN_WRITE
) Content-Type | string Example: application/json |
company_id required | string The ID of the company to create the data hold policy for. |
name required | string The name of the data hold policy. |
start_date required | string The start date of the data hold in YYYY-MM-DD format. |
end_date required | string The end date of the data hold in YYYY-MM-DD format. |
member_emails required | Array of strings A list of the emails of the users the data hold will apply to. |
{- "company_id": "IMbAcASGu56",
- "name": "PLT3 Hold",
- "start_date": "2021-09-23",
- "end_date": "2021-10-23",
- "member_emails": [
- "jane.doe@example.com",
- "john.doe@quip.com"
]
}
{- "id": "1",
- "name": "PLT3 Hold",
- "start_date": "2021-09-23",
- "end_date": "2021-10-23",
- "apply_to": [
- "jane.doe@example.com",
- "john.doe@example.com"
], - "state": "PENDING"
}
Retires a data hold policy.
ADMIN_WRITE
) Content-Type | string Example: application/json |
company_id required | string The ID of the company to the data hold policy belongs to. |
policy_id required | string The ID of the data hold policy to retire. |
{- "company_id": "IMbAcASGu56",
- "policy_id": "2"
}
{- "id": "1",
- "name": "PLT3 Hold",
- "start_date": "2021-09-23",
- "end_date": "2021-10-23",
- "apply_to": [
- "jane.doe@example.com",
- "john.doe@example.com"
], - "state": "PENDING"
}
Adds users to a data hold policy.
ADMIN_WRITE
) Content-Type | string Example: application/json |
company_id required | string The ID of the company the data hold policy belongs to. |
policy_id required | string The ID of the data hold policy the users will be added to. |
member_emails required | Array of strings A list of emails of the users that will be added to the data hold policy. |
{- "company_id": "IMbAcASGu56",
- "policy_id": "string",
- "member_emails": [
- "jane.doe@example.com",
- "john.doe@example.com"
]
}
{- "member_emails": [
- "jane.doe@example.com",
- "john.doe@example.com"
]
}
Removes users from a data hold policy.
ADMIN_WRITE
) Content-Type | string Example: application/json |
company_id required | string The ID of the company the data hold policy belongs to. |
policy_id required | string The ID of the data hold policy the users will be removed from. |
member_emails required | Array of strings A list of emails of the users that will be removed from the data hold policy. |
{- "company_id": "IMbAcASGu56",
- "policy_id": "string",
- "member_emails": [
- "jim.doe@example.com",
- "jen.doe@example.com"
]
}
{- "member_emails": [
- "jane.doe@example.com",
- "john.doe@example.com"
]
}
Returns the data retention policy.
ADMIN_MANAGE
) company_id required | string Example: company_id=IMbAcASGu56 The ID of the company the data retention policy belongs to. |
policy_id required | string Example: policy_id=1 The ID of the policy to get. |
{- "id": "1",
- "name": "PLT3 Retention",
- "retention_period": 30,
- "action": "Delete immediately",
- "retired": false,
- "apply_to_threads_created_after_usec": 1630454400000000,
- "modification_updates_expiry": false,
- "retain_until_expiration": true,
- "apply_to_thread_ids": [
- "APRAAAnMvQo",
- "ASQAAAa89bX",
- "BdEAAA9MI8S"
]
}
Adds a thread to a data retention policy.
ADMIN_WRITE
) Content-Type | string Example: application/json |
company_id required | string The ID of the company the data retention policy belongs to. |
policy_id required | string The ID of the data retention policy the thread will be added to. |
thread_id required | string The ID of the thread that will be added to the data retention policy. |
{- "company_id": "IMbAcASGu56",
- "policy_id": "2",
- "thread_id": "TVdAAASxBZz"
}
{- "thread_id": "TVdAAASxBZz"
}
Looks up the specified API keys. See also: Authentication
ADMIN_MANAGE
) filter | Array of strings Example: filter=client_id_1,client_id_2 A comma-separated list of client IDs of the corresponding API keys. If this parameter is left blank, all API keys are returned. |
limit | integer The maximum number of api keys to return. You can pass in a maximum limit of 100. If you leave the limit field blank, this call returns a maximum of 100 keys. |
cursor | string A pointer to the next page of key data to return. Use a cursor
to incrementally get the next set of api keys. When you call
this API method for the first time, leave the cursor field blank.
For all calls after that first one, pass in the Note: Each |
{- "api_keys": [
- {
- "app_name": "string",
- "client_id": "string",
- "client_secret": "string",
- "expires_in": 2425690
}
], - "response_metadata": {
- "next_cursor": "string"
}
}
Looks up the specified API keys. See also: Authentication
ADMIN_MANAGE
) filter | Array of strings Example: filter=client_id_1,client_id_2 A comma-separated list of client IDs of the corresponding API keys. If this parameter is left blank, all API keys are returned. |
[- {
- "app_name": "string",
- "client_id": "string",
- "client_secret": "string",
- "expires_in": 2425690
}
]
Adds an API key that you can use to generate an OAuth token. Use the token in your integrations or applications that call Quip’s API endpoints. To get an OAuth token, use the returned client_id and client_secret. You can create a maximum of 100 API keys for your company.
ADMIN_MANAGE
) app_name required | string Name of your application that integrates with Quip. |
api_scopes required | Array of strings Items Enum: "USER_READ" "USER_WRITE" "USER_MANAGE" "ADMIN_READ" "ADMIN_WRITE" "ADMIN_MANAGE" A list of API scopes that you need for the features in your application. Limit the scopes in your API key to the ones needed for the features in your application. |
allowed_redirect_uris | Array of strings A list of redirect URIs allowed for OAuth authentication. Quip doesn't validate redirect_uri if this is not set. |
api_key_ttl | integer <int32> How long the API Key should live before it expires (measured in seconds). This value must be greater than 0. |
access_token_ttl | integer <int32> How long should the access tokens created from this API key live before it expires (measured in seconds). This value must be between 0 and 2678400 (31 days) |
{- "app_name": "string",
- "api_scopes": [
- "USER_READ",
- "USER_WRITE"
], - "api_key_ttl": 2425690,
- "access_token_ttl": 2425690
}
{- "app_name": "string",
- "client_id": "string",
- "client_secret": "string",
- "api_key_expires_in": null,
- "access_token_ttl": null
}
Revokes an API key corresponding to a specified client_id. It’s recommended that you revoke tokens for integrations that you’re no longer using. See also: Authentication
ADMIN_MANAGE
) client_id required | string The client_id that corresponds to the API key that you want to revoke. |
{- "error": "string",
- "error_code": 400,
- "error_description": "string"
}