public interface IdentityService
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<ValidatedIdentity> |
confirm(Confirmation confirmation)
Confirms identity from the /verify step to obtain an identity
confirmation token Request info.
|
retrofit2.Call<Void> |
validate(ValidatedIdentity identity)
Validates the passed token.
|
retrofit2.Call<Action> |
verify(Identity identity)
Initiates the process to verify the Identity Request info.
|
@POST(value="/v1/verify") retrofit2.Call<Action> verify(@Body Identity identity)
@POST(value="/v1/confirm") retrofit2.Call<ValidatedIdentity> confirm(@Body Confirmation confirmation)
confirmation - the confirmation data.Confirmation,
ValidatedIdentity,
Call@POST(value="/v1/validate") retrofit2.Call<Void> validate(@Body ValidatedIdentity identity)
identity - the identity for validation. The token should be
defined.Confirmation,
ValidatedIdentityCopyright © 2016. All rights reserved.