Class: Boldsign::Resources::IdentityVerification
Overview
Identity-verification endpoints (‘/v1/identityVerification/*`).
Instance Method Summary
collapse
#initialize
Instance Method Details
#create_embedded_url(body) ⇒ Object
7
8
9
|
# File 'lib/boldsign/resources/identity_verification.rb', line 7
def create_embedded_url(body)
@client.post("/v1/identityVerification/createEmbeddedVerificationUrl", body: body)
end
|
#image(body) ⇒ Object
6
|
# File 'lib/boldsign/resources/identity_verification.rb', line 6
def image(body); @client.post("/v1/identityVerification/image", body: body); end
|
#report(body) ⇒ Object
5
|
# File 'lib/boldsign/resources/identity_verification.rb', line 5
def report(body); @client.post("/v1/identityVerification/report", body: body); end
|