StatusData
public struct StatusData : Codable
Child structure of CustomerEnrollBiometricResponse
, CustomerEnrollResponse
, CustomerIdentifyResponse
, CustomerLiveCheckResponse
, CustomerValidateIdFaceMatchResponse
, CustomerValidateIdResponse
, and CustomerVerifyResponse
.
-
This includes the status code of the processing of the request from the server.
- ‘000’ - Form Submitted Successfully.
- ‘400’ - A bad request was received. Fix the request and try again.
- ‘236’ - Invalid login credentials for merchant.
- ‘604’ - Invalid login id or password.
- ‘500’ - Internal server error occured while processing.
- ‘503’ - IdMission server unavailable at this time.
- ‘001’ - Form already exist.
- ‘307’ - No customers found matching the search criteria. Please change your search criteria.
- ‘3057’ - You have exceeded the limit of forms.
Declaration
Swift
public var statusCode: String?
-
This includes the message which goes with the statusCode.
Declaration
Swift
public var statusMessage: String?
-
This contains any specific error messages that will be helpful in troubleshooting and error status codes.
Declaration
Swift
public var errorData: String?
-
This is a unique ID that is returned from the server for the submitted request.
Declaration
Swift
public var requestId: Int?
-
This is a unique traceID that is returned from the server for the submitted request.
Declaration
Swift
public var traceId: String?
-
This is a IP address of user who submitted form.
Declaration
Swift
public var ipAddress: String?