SignCallbackDto Data Type

The Class SignCallbackDto holding request payload of yousign webhook callback

Implemented Interfaces
Serializable
Properties
name data type description
procedure SignProcedureResponseDto
eventName YousignEventEnum

Example

{
  "procedure" : {
    "id" : "...",
    "name" : "...",
    "description" : "...",
    "actionStatus" : {
      "status" : "FAIL",
      "errorCode" : { },
      "message" : "...",
      "entityId" : 12345,
      "entityCode" : "...",
      "nrAffected" : 12345,
      "json" : "..."
    },
    "status" : "...",
    "members" : [ {
      "firstname" : "...",
      "lastname" : "...",
      "email" : "...",
      "phone" : "...",
      "user" : "...",
      "internal" : true,
      "id" : "..."
    }, {
      "firstname" : "...",
      "lastname" : "...",
      "email" : "...",
      "phone" : "...",
      "user" : "...",
      "internal" : true,
      "id" : "..."
    } ],
    "files" : [ {
      "actionStatus" : { },
      "id" : "...",
      "name" : "...",
      "description" : "...",
      "content" : "..."
    }, {
      "actionStatus" : { },
      "id" : "...",
      "name" : "...",
      "description" : "...",
      "content" : "..."
    } ]
  },
  "eventName" : "PROCEDURE_FINISHED"
}