ЕСОЗ - публічна документація

RC_Get Party verification details (DMS)

Purpose

This WS allows to check current cumulative verification status of specified party as well as verification statuses for each of streams: DRFO, DRACS death.

Specification

Apiary

Authorization

  • Verify the validity of access token

    • Return (401, 'Invalid access token') in case of validation fails

  • Verify that token is not expired

    • in case of error - return (401, 'Invalid access token')

  • Check user scopes in order to perform this action (scope = 'party_verification:details')

    • Return (403, 'Your scope does not allow to access this resource. Missing allowances: party_verification:details') in case of invalid scope(s)

  • Ensure that requested party has Employee that related to the legal entity from token:

    • Return 403 ('Access denied') in case of error

Validate Party

  • Get Party identifier from the URL

  • Check it exists in prm.parties table

    • Return 404 ('not found') in case of error

  • Check its party verification record exists in prm.party_verifications table

    • Return 404 ('not found') in case of error

Service logic

Service returns verification info for a specified party:

  • Get party from prm.parties table

  • Get party verification details from prm.party_verifications table

  • Render a response according to specification

ЕСОЗ - публічна документація