Webhook - Eventos
Respostas
200
Quando um evento ocorre, o sistema envia um webhook contendo informações sobre o evento e o documento.
application/json
post
POST /api/webhooks/events HTTP/1.1
Host: app.staging.gtsign.giro.tech
Accept: */*
200
Quando um evento ocorre, o sistema envia um webhook contendo informações sobre o evento e o documento.
{
"event": {
"type": "SIGNATURE",
"signer": {
"uuid": "text",
"cpf": "text",
"name": "text",
"phone": "text",
"birth": "2025-07-19",
"status": "SIGNED",
"personSignatureDate": "2025-07-19T11:07:57.453Z",
"email": "text",
"signatureType": "PART",
"notificationChannel": "EMAIL"
}
},
"document": {
"uuid": "text",
"name": "text",
"originalDocumentDate": "2025-07-19",
"signedDocumentDate": "2025-07-19",
"status": "VALID",
"deadline": "2025-07-19",
"notificationPeriodDelivery": 1,
"signedDocumentPreSignedUrl": "text",
"signatures": [
{
"uuid": "text",
"cpf": "text",
"name": "text",
"phone": "text",
"birth": "2025-07-19",
"status": "SIGNED",
"personSignatureDate": "2025-07-19T11:07:57.453Z",
"email": "text",
"signatureType": "PART",
"notificationChannel": "EMAIL"
}
]
},
"envelope": {
"uuid": "text",
"status": "VALID",
"deadline": "2025-07-19",
"documents": [
{
"uuid": "text",
"name": "text",
"originalDocumentDate": "2025-07-19",
"signedDocumentDate": "2025-07-19",
"status": "VALID",
"deadline": "2025-07-19",
"notificationPeriodDelivery": 1,
"signedDocumentPreSignedUrl": "text"
}
],
"signatures": [
{
"uuid": "text",
"cpf": "text",
"name": "text",
"phone": "text",
"birth": "2025-07-19",
"status": "SIGNED",
"personSignatureDate": "2025-07-19T11:07:57.453Z",
"email": "text",
"signatureType": "PART",
"notificationChannel": "EMAIL"
}
]
}
}

Atualizado