POST
/
api
/
collections
/
data
/
update
Authorization
Body
curl --request POST \
  --url https://api.worqhat.com/api/collections/data/update \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "collection": "Users",
  "data": {
    "sampleDbContent": "This is a sample content",
    "sampleDbContent2": "This is a sample content 2"
  },
  "docId": "1234567890"
}'
{
  "data": {
    "collection": "Users",
    "databaseId": "1234567890",
    "documentId": "1234567890",
    "elapsed_time": 800
  },
  "processing_count": 6554,
  "processing_id": "4b139bfe-1f71-4345-b539-fa6c1700f166",
  "processing_time": 888,
  "status": "success"
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
collection
string

The Name of the Collection or the Group where you want to store all your data.

data
object

The Data that you want to update in the Collection. You can add your documents to a Collection using this endpoint in the form of Json. To update Nested JSONs, you can either pass in the entire Nested JSON or you can pass in the key value pair in the form of dot-notation to update a specific key in the Nested JSON.

docId
string

The ID of the Document that you want to update.

Response

200 - application/json
data
object
processing_count
integer

The number of times the request has been processed. This is what is considered in the Billing Process. This is either the number of times the image is processed or the number of words that the server processes.

processing_id
string

A universally unique identifier for the request. This can be used to track the request in the logs.

processing_time
integer

The time taken to process the request, in milliseconds.

status
string

Status indicating the success of the text moderation.