- Introduction
- Concepts
- Authentication
- Webhooks
- Envelope lifecycle
- Error handling
- Contact
- Document
- Envelope
- Get envelope certificate fileGET
- Process envelope certificatePOST
- Get envelopeGET
- Update envelopePUT
- Remove envelopeDELETE
- Create envelopePOST
- List available envelope ownersGET
- Change envelope user account ownerPOST
- Rename envelopePOST
- Move envelopePOST
- Publish envelopePOST
- Unschedule envelope publicationPOST
- Hold envelopePOST
- Cancel envelopePOST
- Restore envelopePOST
- Manual reinvite to review envelopePOST
- Create signature linkGET
- Template
- Vault
Create contact
POST
https://api.signater.com/v1/ecm/contacts
Contact
Last modified:2025-03-29 12:47:42
Request
Authorization
Add parameter in header
x-api-token
Example:
x-api-token: ********************
Body Params application/json
name
string
required
>= 2 characters<= 200 characters
role
enum<string> | enum<null>
optional
Allowed values:
SignApproveRecognizeTestifyConfirmReceivingEndorseInBlackEndorseInWhiteConfirm
title
string | null
optional
<= 200 characters
email
string | null
optional
Match pattern:
^([\w\.\-]+)@([\w\-]+)((\.(\w){2,3})+)$
phoneIdd
integer <int32> | null
optional
phoneNumber
string | null
optional
documentType
enum<string> | enum<null>
optional
Allowed values:
GenericIdentificationBrazilianCpf
documentValue
string | null
optional
description
string | null
optional
<= 2000 characters
Example
{
"name": "John Doe",
"role": "Approve",
"title": "Project Manager",
"email": "john.doe@example.com",
"phoneIdd": 1,
"phoneNumber": "1234567890",
"documentType": "GenericIdentification",
"documentValue": "A1234567",
"description": "A contact person for project management."
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.signater.com/v1/ecm/contacts' \
--header 'Content-Type: application/json' \
--header 'x-api-token;' \
--data-raw '{
"name": "John Doe",
"role": "Approve",
"title": "Project Manager",
"email": "john.doe@example.com",
"phoneIdd": 1,
"phoneNumber": "1234567890",
"documentType": "GenericIdentification",
"documentValue": "A1234567",
"description": "A contact person for project management."
}'
Responses
🟢201Created
application/json
Body
id
string <uuid>
optional
Example
{
"id": "0cb502bc-ed21-4f83-9a70-7848d86b40a5"
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden