You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Returns the current identity verification status for the given IDV record. Does not refresh the WebSDK URL — call POST /v1/idv to initiate or retry.
29733
+
operationId: sumsub.get.v1.idv.id
29734
+
tags:
29735
+
- Identity Verification (IDV)
29736
+
x-internal: false
29737
+
parameters:
29738
+
- name: idvId
29739
+
in: path
29740
+
required: true
29741
+
schema:
29742
+
type: string
29743
+
description: The IDV record ID
29744
+
responses:
29745
+
'200':
29746
+
description: '200'
29747
+
content:
29748
+
application/json:
29749
+
schema:
29750
+
type: object
29751
+
properties:
29752
+
idvId:
29753
+
type: string
29754
+
status:
29755
+
type: string
29756
+
enum:
29757
+
- pending
29758
+
- action_required
29759
+
- approved
29760
+
- rejected
29761
+
userId:
29762
+
type: string
29763
+
enterpriseId:
29764
+
type: string
29765
+
organizationId:
29766
+
type: string
29767
+
nullable: true
29768
+
rejectLabels:
29769
+
type: array
29770
+
items:
29771
+
type: string
29772
+
nullable: true
29773
+
required:
29774
+
- idvId
29775
+
- status
29776
+
- userId
29777
+
- enterpriseId
29778
+
- organizationId
29779
+
- rejectLabels
29780
+
'403':
29781
+
description: '403'
29782
+
content:
29783
+
application/json:
29784
+
schema:
29785
+
type: object
29786
+
properties:
29787
+
error:
29788
+
type: string
29789
+
description: Error message
29790
+
required:
29791
+
- error
29792
+
additionalProperties: true
29793
+
'404':
29794
+
description: '404'
29795
+
content:
29796
+
application/json:
29797
+
schema:
29798
+
type: object
29799
+
properties:
29800
+
error:
29801
+
type: string
29802
+
description: Error message
29803
+
required:
29804
+
- error
29805
+
additionalProperties: true
29806
+
'500':
29807
+
description: '500'
29808
+
content:
29809
+
application/json:
29810
+
schema:
29811
+
type: object
29812
+
properties:
29813
+
error:
29814
+
type: string
29815
+
description: Error message
29816
+
required:
29817
+
- error
29818
+
additionalProperties: true
29819
+
/api/sumsub-service/v1/idv:
29820
+
post:
29821
+
summary: Initiate Sumsub IDV for a user
29822
+
description: Initiates the Sumsub identity verification flow for a user within an enterprise. Returns a WebSDK URL when verification is pending, or a completion status if the user has already been verified.
29823
+
operationId: sumsub.post.v1.idv
29824
+
tags:
29825
+
- Identity Verification (IDV)
29826
+
x-internal: false
29827
+
parameters: []
29828
+
requestBody:
29829
+
description: Body
29830
+
content:
29831
+
application/json:
29832
+
schema:
29833
+
type: object
29834
+
properties:
29835
+
userId:
29836
+
type: string
29837
+
description: The BitGo user ID
29838
+
enterpriseId:
29839
+
type: string
29840
+
description: The BitGo enterprise ID
29841
+
sumsubShareToken:
29842
+
type: string
29843
+
minLength: 1
29844
+
description: Share token to copy an existing applicant from another Sumsub environment
0 commit comments