- list - Returns a list of industries relevant to merchant profile enrichment. Results are ordered by industry name.
To access this endpoint using an access token,
you'll need to specify the /profile-enrichment.read scope.
Returns a list of industries relevant to merchant profile enrichment. Results are ordered by industry name.
To access this endpoint using an access token,
you'll need to specify the /profile-enrichment.read scope.
package hello.world;
import io.moov.sdk.Moov;
import io.moov.sdk.models.components.Security;
import io.moov.sdk.models.operations.ListIndustriesResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws Exception {
Moov sdk = Moov.builder()
.security(Security.builder()
.username("")
.password("")
.build())
.build();
ListIndustriesResponse res = sdk.industries().list()
.call();
if (res.enrichedIndustries().isPresent()) {
System.out.println(res.enrichedIndustries().get());
}
}
}| Error Type | Status Code | Content Type |
|---|---|---|
| models/errors/APIException | 4XX, 5XX | */* |