Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Document Resource


A Sync Document is an object with these characteristics:

  • It's a single JSON object, up to 16KiB in size.
  • Its modification history is not maintained; however, documents are assigned a new revision number after each modification.
  • Its concurrency control is based on an 'eventual' model and it uses revision numbers for conditional updates.
  • It expires and is deleted automatically if its eviction is configured by setting the ttl parameter. By default, it is persisted permanently.

Working with Sync Documents

working-with-sync-documents page anchor

A Sync Document is best suited for basic use cases, such as rudimentary publish/subscribe flows, or situations where history synchronization is not a requirement.

Documents can be created, updated, subscribed to, and removed via the client JavaScript SDK. See the latest JavaScript SDK documentation for full details. Servers wishing to manage these objects can do so via the REST API.


Property nameTypePIIDescription
sidSID<ET>
Not PII

The unique string that we created to identify the Document resource.

Pattern: ^ET[0-9a-fA-F]{32}$Min length: 34Max length: 34

unique_namestring
PII MTL: 30 days

An application-defined string that uniquely identifies the resource. It can be used in place of the resource's sid in the URL to address the resource and can be up to 320 characters long.


account_sidSID<AC>

The SID of the Account that created the Document resource.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

service_sidSID<IS>

The SID of the Sync Service the resource is associated with.

Pattern: ^IS[0-9a-fA-F]{32}$Min length: 34Max length: 34

urlstring<uri>

The absolute URL of the Document resource.


linksobject<uri-map>

The URLs of resources related to the Sync Document.


revisionstring

The current revision of the Sync Document, represented as a string. The revision property is used with conditional updates to ensure data consistency.


dataobject

An arbitrary, schema-less object that the Sync Document stores. Can be up to 16 KiB in length.


date_expiresstring<date-time>

The date and time in GMT when the Sync Document expires and will be deleted, specified in ISO 8601(link takes you to an external page) format. If the Sync Document does not expire, this value is null. The Document resource might not be deleted immediately after it expires.


date_createdstring<date-time>

The date and time in GMT when the resource was created specified in ISO 8601(link takes you to an external page) format.


date_updatedstring<date-time>

The date and time in GMT when the resource was last updated specified in ISO 8601(link takes you to an external page) format.


created_bystring

The identity of the Sync Document's creator. If the Sync Document is created from the client SDK, the value matches the Access Token's identity field. If the Sync Document was created from the REST API, the value is system.


Create a Document resource

create-a-document-resource page anchor
POST https://sync.twilio.com/v1/Services/{ServiceSid}/Documents

Path parameters

path-parameters page anchor
Property nameTypeRequiredPIIDescription
ServiceSidstringrequired

The SID of the Sync Service to create the new Document resource in.

Property nameTypeRequiredPIIDescription
UniqueNamestringOptional

An application-defined string that uniquely identifies the Sync Document


DataobjectOptional

A JSON string that represents an arbitrary, schema-less object that the Sync Document stores. Can be up to 16 KiB in length.


TtlintegerOptional

How long, in seconds, before the Sync Document expires and is deleted (the Sync Document's time-to-live).

Create a Document using the REST API

create-a-document-using-the-rest-api page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_18
// Download the helper library from https://www.twilio.com/docs/node/install
_18
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_18
_18
// Find your Account SID and Auth Token at twilio.com/console
_18
// and set the environment variables. See http://twil.io/secure
_18
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_18
const authToken = process.env.TWILIO_AUTH_TOKEN;
_18
const client = twilio(accountSid, authToken);
_18
_18
async function createDocument() {
_18
const document = await client.sync.v1
_18
.services("ServiceSid")
_18
.documents.create({ uniqueName: "user_prefs" });
_18
_18
console.log(document.sid);
_18
}
_18
_18
createDocument();

Output

_16
{
_16
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_16
"created_by": "created_by",
_16
"data": {},
_16
"date_expires": "2015-07-30T21:00:00Z",
_16
"date_created": "2015-07-30T20:00:00Z",
_16
"date_updated": "2015-07-30T20:00:00Z",
_16
"revision": "revision",
_16
"service_sid": "ServiceSid",
_16
"sid": "ETaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_16
"unique_name": "user_prefs",
_16
"url": "https://sync.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Documents/ETaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_16
"links": {
_16
"permissions": "https://sync.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Documents/ETaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Permissions"
_16
}
_16
}

Create and set Document data using the JavaScript API

create-and-set-document-data-using-the-javascript-api page anchor

_10
client.document('user_prefs').then(function(doc) {
_10
doc.set({
_10
foregroundColor: "#ffff00",
_10
backgroundColor: "#ff0000"
_10
});
_10
});

(information)

Info

Using set will overwrite any existing data in a document.


Fetch a Document resource

fetch-a-document-resource page anchor
GET https://sync.twilio.com/v1/Services/{ServiceSid}/Documents/{Sid}

Property nameTypeRequiredPIIDescription
ServiceSidstringrequired

The SID of the Sync Service with the Document resource to fetch.


Sidstringrequired

The SID of the Document resource to fetch. Can be the Document resource's sid or its unique_name.

Fetch a Document using the REST API

fetch-a-document-using-the-rest-api page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_19
// Download the helper library from https://www.twilio.com/docs/node/install
_19
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_19
_19
// Find your Account SID and Auth Token at twilio.com/console
_19
// and set the environment variables. See http://twil.io/secure
_19
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_19
const authToken = process.env.TWILIO_AUTH_TOKEN;
_19
const client = twilio(accountSid, authToken);
_19
_19
async function fetchDocument() {
_19
const document = await client.sync.v1
_19
.services("ServiceSid")
_19
.documents("Sid")
_19
.fetch();
_19
_19
console.log(document.sid);
_19
}
_19
_19
fetchDocument();

Output

_16
{
_16
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_16
"created_by": "created_by",
_16
"data": {},
_16
"date_expires": "2015-07-30T21:00:00Z",
_16
"date_created": "2015-07-30T20:00:00Z",
_16
"date_updated": "2015-07-30T20:00:00Z",
_16
"revision": "revision",
_16
"service_sid": "ServiceSid",
_16
"sid": "Sid",
_16
"unique_name": "unique_name",
_16
"url": "https://sync.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Documents/ETaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_16
"links": {
_16
"permissions": "https://sync.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Documents/ETaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Permissions"
_16
}
_16
}

Fetch a Document with the JavaScript SDK

fetch-a-document-with-the-javascript-sdk page anchor

_10
client.document('user_prefs').then(function(doc) {
_10
console.log(doc.value);
_10
});

Subscribe to Document updates with the JavaScript SDK

subscribe-to-document-updates-with-the-javascript-sdk page anchor

_10
syncClient.document("user_prefs").then(function(doc) {
_10
doc.on("updated",function(data) {
_10
console.log(data);
_10
});
_10
});


Read multiple Document resources

read-multiple-document-resources page anchor
GET https://sync.twilio.com/v1/Services/{ServiceSid}/Documents

(information)

Info

By default, this will return the first 50 Documents. Specify a PageSize value to fetch up to 100 items at once. See paging for more information.

Property nameTypeRequiredPIIDescription
ServiceSidstringrequired

The SID of the Sync Service with the Document resources to read.

Property nameTypeRequiredPIIDescription
PageSizeintegerOptional

How many resources to return in each list page. The default is 50, and the maximum is 1000.

Minimum: 1Maximum: 1000

PageintegerOptional

The page index. This value is simply for client state.

Minimum: 0

PageTokenstringOptional

The page token. This is provided by the API.

Retrieve all Documents using the REST API

retrieve-all-documents-using-the-rest-api page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_18
// Download the helper library from https://www.twilio.com/docs/node/install
_18
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_18
_18
// Find your Account SID and Auth Token at twilio.com/console
_18
// and set the environment variables. See http://twil.io/secure
_18
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_18
const authToken = process.env.TWILIO_AUTH_TOKEN;
_18
const client = twilio(accountSid, authToken);
_18
_18
async function listDocument() {
_18
const documents = await client.sync.v1
_18
.services("ServiceSid")
_18
.documents.list({ limit: 20 });
_18
_18
documents.forEach((d) => console.log(d.sid));
_18
}
_18
_18
listDocument();

Output

_12
{
_12
"documents": [],
_12
"meta": {
_12
"first_page_url": "https://sync.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Documents?PageSize=50&Page=0",
_12
"key": "documents",
_12
"next_page_url": null,
_12
"page": 0,
_12
"page_size": 50,
_12
"previous_page_url": null,
_12
"url": "https://sync.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Documents?PageSize=50&Page=0"
_12
}
_12
}


Update a Document resource

update-a-document-resource page anchor
POST https://sync.twilio.com/v1/Services/{ServiceSid}/Documents/{Sid}

Property nameTypeRequiredPIIDescription
If-MatchstringOptional

The If-Match HTTP request header

Property nameTypeRequiredPIIDescription
ServiceSidstringrequired

The SID of the Sync Service with the Document resource to update.


Sidstringrequired

The SID of the Document resource to update. Can be the Document resource's sid or its unique_name.

Property nameTypeRequiredPIIDescription
DataobjectOptional

A JSON string that represents an arbitrary, schema-less object that the Sync Document stores. Can be up to 16 KiB in length.


TtlintegerOptional

How long, in seconds, before the Sync Document expires and is deleted (time-to-live).

Update a Document using the REST API

update-a-document-using-the-rest-api page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_19
// Download the helper library from https://www.twilio.com/docs/node/install
_19
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_19
_19
// Find your Account SID and Auth Token at twilio.com/console
_19
// and set the environment variables. See http://twil.io/secure
_19
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_19
const authToken = process.env.TWILIO_AUTH_TOKEN;
_19
const client = twilio(accountSid, authToken);
_19
_19
async function updateDocument() {
_19
const document = await client.sync.v1
_19
.services("ServiceSid")
_19
.documents("Sid")
_19
.update({ data: {} });
_19
_19
console.log(document.sid);
_19
}
_19
_19
updateDocument();

Output

_16
{
_16
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_16
"created_by": "created_by",
_16
"data": {},
_16
"date_expires": "2015-07-30T21:00:00Z",
_16
"date_created": "2015-07-30T20:00:00Z",
_16
"date_updated": "2015-07-30T20:00:00Z",
_16
"revision": "revision",
_16
"service_sid": "ServiceSid",
_16
"sid": "Sid",
_16
"unique_name": "unique_name",
_16
"url": "https://sync.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Documents/ETaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_16
"links": {
_16
"permissions": "https://sync.twilio.com/v1/Services/ISaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Documents/ETaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Permissions"
_16
}
_16
}

Update data in a Document using the JavaScript SDK

update-data-in-a-document-using-the-javascript-sdk page anchor

This will modify the foregroundColor key in the Document


_10
client.document('user_prefs').then(function(doc) {
_10
doc.update({foregroundColor: "#ff0000"});
_10
});

Mutate data in a Document using the JavaScript SDK

mutate-data-in-a-document-using-the-javascript-sdk page anchor

Use mutate for more fine grained control over updates.


_10
client.document('user_prefs').then(function(doc) {
_10
doc.mutate(function(remoteData) {
_10
remoteData.foregroundColor = "#e2e2e2";
_10
return remoteData;
_10
});
_10
});

The mutate function helps your Javascript code respond to concurrent updates with versioned control. See the corresponding JavaScript SDK documentation for details.


Delete a Document resource

delete-a-document-resource page anchor
DELETE https://sync.twilio.com/v1/Services/{ServiceSid}/Documents/{Sid}

Property nameTypeRequiredPIIDescription
ServiceSidstringrequired

The SID of the Sync Service with the Document resource to delete.


Sidstringrequired

The SID of the Document resource to delete. Can be the Document resource's sid or its unique_name.

Delete a Document using the REST API

delete-a-document-using-the-rest-api page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_14
// Download the helper library from https://www.twilio.com/docs/node/install
_14
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_14
_14
// Find your Account SID and Auth Token at twilio.com/console
_14
// and set the environment variables. See http://twil.io/secure
_14
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_14
const authToken = process.env.TWILIO_AUTH_TOKEN;
_14
const client = twilio(accountSid, authToken);
_14
_14
async function deleteDocument() {
_14
await client.sync.v1.services("ServiceSid").documents("Sid").remove();
_14
}
_14
_14
deleteDocument();

Remove a Document with the JavaScript SDK

remove-a-document-with-the-javascript-sdk page anchor

_10
syncClient.document("user_prefs").then(function(doc) {
_10
doc.removeDocument().then(function() {
_10
console.log('Document removed.');
_10
});
_10
});


Rate this page: