Document Sign Otp
Request to file sign
POST
https://biometrid.com/api/processes/:id/step
This endpoint allows you to sign a file with otp. This action may take some time to complete.
Path Parameters
id
string
ID of the process to get
Headers
Accept-Language
string
en (default), pt
Content-Type
string
multipart/form-data
Authorization
string
Authentication account token
Request Body
phoneNumber
object
Phone with country (see below an example)
files
object
Files array (see below an example)
{
"data": {},
"meta": {
"message": "Process not found",
"code": 4013
},
"status": false
}
{
"phoneNumber": {
"country": "PT",
"number": "900000000"
}, // only required when the step field payload is empty
"files": [{
"fileId": "string"
}]
}
Sign file
POST
https://biometrid.com/api/processes/:id/step
This endpoint allows you to sign a file. This action may take some time to complete.
Path Parameters
id
string
ID of the process to get
Headers
Accept-Language
string
en (default), pt
Content-Type
string
multipart/form-data
Authorization
string
Authentication client token
Request Body
phoneNumber
object
Phone with country (see below an example)
files
object
Files array (see below an example)
{
"data": {},
"meta": {
"message": "Process not found",
"code": 4013
},
"status": false
}
{
"phoneNumber": {
"country": "PT",
"number": "900000000"
}, // only required when the step field payload is empty
"files": [{
"fileId": "string",
"code": "5508"
}]
}
Last updated
Was this helpful?