id
(uuid)state
(FSMField with chooses: requested
, open
, pending
, verified
, revoked
and rejected
)block_number
(IntegerField)granted_to_type
(PositiveSmallIntegerField from 1 to 3)verifier_type
(PositiveSmallIntegerField from 1 to 3)date_created
(DateTimeField with auto add)date_last_modified
(DateTimeField with auto add now)tx_hash
(CharField)block_hash
(CharField)certificate
(ForeignKey to certificate, setting to Null, if certificate was deleted)granted_to
(ForeignKey to user, setting to Null, if user was deleted)verifier
(ForeignKey to user, setting to Null, if user was deleted)meta_ipfs_hash
(CharField)create(self, request)
acccepting POST requests with JSON information about new verification.error
JSON with errorsretrieve(self, request, pk=None)
acccepting GET requests with verification id and reply with JSON information about verification.list(self, request)
acccepting GET requests with inline get parameter active_profile
: ('Academy'
, 'Business'
, 'Learner'
) and reply with JSON information about verification by verifier user.set_open_by_id(self, request, pk=None)
acccepting POST requests with verification id in line. Isuuer should be verifier of this verification.set_pending_by_id(self, request, pk=None)
acccepting POST requests with verification id in line. Isuuer should be verifier of this verification.reject_by_id(self, request, pk=None)
acccepting POST requests with verification id in line. Isuuer should be verifier of this verification.