Page cover

Split

In the Split process, identification and signing are separated into two calls: identOnly and signOnly. IdentOnly includes selfie and document registration, while signOnly involves signing. SignOnly can only be executed with a valid identification.

circle-info

The identOnly and signOnly processes are self-contained and autonomous. As such, each process must be assigned its own extID.

The processes are linked on a per-user basis through the user’s passkey.

Additional information about the passkey is available herearrow-up-right.

Example identOnly

In the identOnly process, no document is included during initialization. In this example, the passkeyUsername was set as the identifier.

{
  "extId": "documentation-834f79dd393",
  "lang": "de",
  "customer": {
    "name": "Martin",
    "firstname": "Muster",
    "nationality": "CHE",
    "dateOfBirth": "1997-04-10"
  },
  "passkeyUsername": "UniqueUserId-1234",

  "processSteps": [    
    {
      "type": "QesSignature",
      "subtype": "identOnly"
    }],

  "systemUrls": [
    {
      "url": "https://webhook.site/1b5aea87-2146-483d-9e86-b576dfdcb007",
      "type": "callback",
      "state": "review-pending"
    },
    {
      "url": "https://webhook.site/1b5aea87-2146-483d-9e86-b576dfdcb007",
      "type": "callback",
      "state": "error"
    },
    {
      "url": "https://fidentity.ch/",
      "type": "redirect",
      "state": "review-pending"
    },
    {
      "url": "https://fidentity.ch/",
      "type": "redirect",
      "state": "error"
    }
  ]
}

Example signOnly

Alongside the identifier, a document submission is required. Additionally, as this process functions autonomously, it is necessary to set a new extId and system URLs.

Last updated