GET/Verifiedimage

Download images

GET https://rest-api.argoskyc.com/v3/verifiedimage

  • There is ID(front), ID back and selfie image.

  • One API call downloads one image.

  • URL and x-api-key are required.

Input Data

ParameterRequiredDescription

consent_id

required

Unique ID of profile

type

required

<id, idBack, selfie>

id : ID document front page

idBack : ID document back page

selfie : face image

Output Data

An image file will be downloaded.

Sample

Request URL

curl -X GET "https://test-api.argoskyc.com/dev/verifiedimage?consent_id={consent_id}&type={type}"
-H "x-api-key: {yourAPIKey}"

Sample Request

curl --location --request GET 'https://test-api.argoskyc.com/dev/verifiedimage?consent_id={consent_id}&type={type}' \
--header 'x-api-key: {yourAPIKey}'

Sample Response

'image.jpg' format file will be downloaded.

Last updated