PUT/Image

Definition

  • Add or update (overwrite) four types of images to an already created Submission.

  • The target images are the front, back, selfie image, and address image of the ID card.

Input Data

  • Image extensions can be submitted as jpg, jpeg, or png.

  • Image data format is submitted as Base64 String.

  • When submitting one or more of idImage (front of ID) or idBackImage (back of ID), the idType parameter is required.

Output Data

Error Codes (400 error)

Request URL

  • You must enter the URL and x-api-key.

curl -X PUT "<https://rest-api.argosidentity.com/v3/submission/image>" \\
-H "x-api-key: {yourAPIKey}" \\

Sample Request

  • Submit in Body/Raw Json format.

  • Only one submission is allowed.

curl --location --request PUT '<https://rest-api.argosidentity.com/dev/submission/image>' \\
--header 'x-api-key: {yourAPIKey}' \\
--form 'submissionId="sampleSubmissionId11"' \\
--form 'admin="sample@argosidentity.com"' \\
--form 'idType="drivers_license"' \\
--form 'idImage={base64String}' \\
--form 'idBackImage={base64String}' \\
--form 'selfieImage={base64String}' \\
--form 'addressImage={base64String}'

Sample Response

{
    "message": "complete to update image."
}

Last updated