cURL
curl --request PUT \ --url https://example.com/v1/api/datastores/v1/collections/{collectionId}/documents/{documentId} \ --header 'Content-Type: application/json' \ --header 'X-DOMO-Developer-Token: <api-key>' \ --data ' { "content": { "username": "Bill", "band": "Wyld Stallyns" } } '
{ "message": "<string>" }
Modify an existing document in a collection.
Domo Developer Token for authentication.
The ID of the collection.
The ID of the document.
Arbitrary JSON content of the document.
OK (Response body is not documented)