Fetch the list of the identity file attachments

GET /users/{user_id}/kyc/identities/{id}/file

Fetch the list of the identity file attachments.

Path parameters

  • user_id string Required

    User id

  • id string Required

    Resource ID

Responses

  • 200

    The list of the identity file attachments

    Hide response attributes Show response attributes array[object]
    • id string(uuid)
    • file object
    • filename string
    • document_type string
    • document_id_number string
    • issued_at string(datetime)
    • expires_at string(datetime)
    • issuing_authority string
    • issuing_country string
    • content_type string
  • 400

    Server cannot or will not process the request

GET /users/{user_id}/kyc/identities/{id}/file
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/users/{user_id}/kyc/identities/{id}/file
Response examples (200)
[
  {
    "id": "string",
    "file": {},
    "filename": "string",
    "document_type": "string",
    "document_id_number": "string",
    "issued_at": "string",
    "expires_at": "string",
    "issuing_authority": "string",
    "issuing_country": "string",
    "content_type": "string"
  }
]
Response examples (200)
[
  {
    "id": "string",
    "file": {},
    "filename": "string",
    "document_type": "string",
    "document_id_number": "string",
    "issued_at": "string",
    "expires_at": "string",
    "issuing_authority": "string",
    "issuing_country": "string",
    "content_type": "string"
  }
]