Skip to main content
POST
Create CoworkerIdentityCheck
A CoworkerIdentityCheck represents a manual or Stripe Identity-based verification of a customer’s identity or address. Each check is linked to a Coworker and a Business (location). The VerificationType determines the nature of the check: When VerificationType is IdDocument, use IdentityDocumentType to specify the document kind, along with IdentityDocumentNumber, IdentityDocumentIssuedBy, and IdentityDocumentExpirationDate. When VerificationType is Address, use AddressDocumentType instead. IdentityCheckProvider controls how the check is performed: Manual (1) means the operator reviews documents directly, while StripeIdentity (2) delegates verification to Stripe Identity. The VerificationStatus tracks progress through the check lifecycle: PendingSubmittedSuccessful or Failed (or Cancelled).

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the CoworkerIdentityCheck-Create role.

Enums

Request Body

Required Fields

integer
required
ID of the business linked to this record.
integer
required
ID of the coworker linked to this record.
string
required
Display name for this verification check.
integer
required
How the check is performed: Manual (operator review) or StripeIdentity (Stripe-delegated). Defaults to eIdentityCheckProvider.Manual.
integer
required
Type of identity document used when VerificationType is IdDocument. Defaults to eIdentityCheckDocumentType.Other.
integer
required
Type of address document used when VerificationType is Address. Defaults to eAddressCheckDocumentType.Other.

Optional Fields

string
Number or identifier on the identity document.
string
Authority or organisation that issued the identity document.
string
Expiration date of the identity document.
string
Free-text notes or details about this check.
boolean
Whether billed is enabled.
string
ID of the stripe verification session associated with this record.
integer
The identity check provider1 value for this coworker identity check. See eIdentityCheckProvider? enum above.
integer
The verification type1 value for this coworker identity check. See eIdVerificationType? enum above.
string
The description1 value for this coworker identity check.
integer
The identity check provider2 value for this coworker identity check. See eIdentityCheckProvider? enum above.
integer
The verification type2 value for this coworker identity check. See eIdVerificationType? enum above.
string
The description2 value for this coworker identity check.

Code Examples

Response

200

integer
HTTP status code. 200 on success.
string
A human-readable message confirming the creation.
object
Contains the Id of the newly created record.
boolean
true if the coworkeridentitycheck was created successfully.
array
null on success.
Example Response

400

string
A summary of the validation error(s), in the format PropertyName: error message.
any
null on validation failure.
object[]
Array of validation errors.
boolean
false when the request fails validation.
Example Response