Updating users

triangle-exclamation

Endpoint

POST https://api.signitic.app/users

Headers

Name
Type
Description

x-api-key*

String

Your API key

This endpoint supports partial updates. Only the fields included in the payload are updated.

Request body

Example

{
  "users": [
    {
      "email": "[email protected]",
      "firstname": "Johanna",
      "postal_code": "75008",
      "city": "Paris"
    },
    {
      "email": "[email protected]",
      "jobtitle": "Internship",
      "threads_link": "threads.net"
    }
  ]
}

Success response

200 OK

Error responses

Status
Internal code
When

400

103

The request body is not valid JSON.

401

99

The API key is missing or invalid.

422

104

More than 100 users are sent in the batch.

Last updated