Register Face
Service that registers a face in a face collection and returns the assigned identifier.
Endpoint
POST /biometric/face/collections/{collectionId}/facesHeaders
consumer-id
string
Yes
Consumer identifier.
operation-id
string
Conditional
Identifier of the operation to which the referenced assets belong. Required when source is FILE_KEY. See Storage.
Path parameters
collectionId
string
Yes
Collection identifier.
Request body
Content-Type: application/json
Parameters
source
string
Yes
Mode in which the assets are provided: FILE_KEY for stored asset keys, FILE for content in Base64. See Storage.
face
string
Yes
Face to register: asset key TOKEN_BEST_IMAGE or its content in Base64.
Request example
Responses
200 Success
Response parameters
consumerId
string
Identifier of the consumer that made the call.
transactionId
string
Transaction identifier.
timestamp
string
Response timestamp in format ISO 8601.
message
string
Descriptive field for the result of the service execution.
collectionId
string
Collection in which the face was registered.
faceId
string
Identifier of the registered face.
Other responses
400
Required field missing or unsupported value; missing header operation-id with references; or a key does not have the form {operationId}/{CONTEXTO} or declares a context that the slot does not support.
403
The consumer is not provisioned with the service REGISTER_FACE.
404
The operation declared in operation-id does not exist or belongs to another consumer.
409
A referenced asset contains content already processed in another operation.
410
The operation declared in operation-id has expired.
422
A key names an operation different from the one declared in operation-id, or the context has no stored asset.
429
The consumer has exceeded its request rate limit, or a referenced asset has exhausted its invocation budget on this Endpoint. In the first case the response includes Retry-After, X-RateLimit-Limit and X-RateLimit-Burst, and waiting resolves it; in the second it does not. The underlying service is not invoked and the call is not billed.
The body of an error response has the form described in MIDAPI v2.
Last updated