Skip to main content
Version: main

Sync down document

Trigger a sync-down of a document to the caller.

HTTP request

POST /api/now/v1/documents/{documentSysId}/syncDown

Path parameters

NameDescription
documentSysIdDocument sys_id

Query parameters

None.

Request body

Parameters for this operation are carried in the request configuration; don't supply a body model.

Response

An item envelope of Document.

Example

response, err := client.Now().Documents().SyncDown("{documentSysID}").Post(ctx, nil)
if err != nil {
log.Fatal(err)
}
Was this page helpful?