-
public interface VerifyService
-
-
Method Summary
Modifier and Type Method Description abstract Response<VerifyServerResponse.RegisterAttestation>registerAttestation(@Body() RegisterAttestationBody body)abstract Response<Origin>resolveAttestation(@Path(value = attestationId) String attestationId)abstract Response<VerifyServerPublicKey>getPublicKey()-
-
Method Detail
-
registerAttestation
@Headers(value = {Content-Type: application/json})@POST(value = attestation) abstract Response<VerifyServerResponse.RegisterAttestation> registerAttestation(@Body() RegisterAttestationBody body)
-
resolveAttestation
@Headers(value = {Content-Type: application/json})@GET(value = attestation/{attestationId}?v2Supported=true) abstract Response<Origin> resolveAttestation(@Path(value = attestationId) String attestationId)
-
getPublicKey
@GET(value = v2/public-key) abstract Response<VerifyServerPublicKey> getPublicKey()
-
-
-
-