Skip to main content
POST
/
crm
/
objects
/
{objectName}
/
entries
/
batch
Create many entries
curl --request POST \
  --url https://www.dench.com/api/v1/crm/objects/{objectName}/entries/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entries": [
    {
      "Name": "Jane",
      "Email": "jane@example.com"
    },
    {
      "Name": "Bob",
      "Email": "bob@example.com"
    }
  ]
}
'
{
  "results": [
    {
      "entryId": "<string>"
    }
  ],
  "count": 123
}

Authorizations

Authorization
string
header
required

Workspace-scoped Dench API key from workspace settings. This is the same key used by DENCH_API_KEY in sandboxes.

Path Parameters

objectName
string
required

Body

application/json
entries
object[]
required

Up to 200 field maps.

Maximum array length: 200

Response

Successful response

results
object[]
required
count
number
required