Skip to main content
Version: v2.0

Create document

Create a document record; parameters are supplied via the request configuration.

HTTP request

POST /api/now/v1/documents/create

Path parameters

None.

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().Create().Post(ctx, nil)
if err != nil {
log.Fatal(err)
}
Was this page helpful?