Documentation Index
Fetch the complete documentation index at: https://docs.txcloud.thetekcircle.io/llms.txt
Use this file to discover all available pages before exploring further.
New: French documentation now available! Switch to French
Official TXCloud SDK for Java
Documentation Index
Fetch the complete documentation index at: https://docs.txcloud.thetekcircle.io/llms.txt
Use this file to discover all available pages before exploring further.
<dependency>
<groupId>io.txcloud</groupId>
<artifactId>txcloud-java</artifactId>
<version>1.0.0</version>
</dependency>
implementation 'io.txcloud:txcloud-java:1.0.0'
import io.txcloud.TXCloud;
import io.txcloud.model.Verification;
public class Example {
public static void main(String[] args) {
TXCloud txcloud = new TXCloud.Builder()
.apiKey(System.getenv("TXCLOUD_API_KEY"))
.build();
Verification verification = txcloud.identity().verify(
VerifyRequest.builder()
.documentFront(documentBase64)
.country("MA")
.documentType("national_id")
.build()
);
System.out.println("Status: " + verification.getStatus());
}
}