(industries)
Information about industries and their merchant codes.
- list_industries - List all industries
Returns a list of all industry titles and their corresponding MCC/SIC/NAICS codes. Results are ordered by title.
To use this endpoint from the browser, you'll need to specify the /profile-enrichment.read
scope when generating a token.
from moov import Moov
import os
s = Moov(
gateway_auth=os.getenv("MOOV_GATEWAY_AUTH", ""),
)
res = s.industries.list_industries()
if res is not None:
# handle response
pass
Parameter | Type | Required | Description |
---|---|---|---|
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
Error Type | Status Code | Content Type |
---|---|---|
models.SDKError | 4XX, 5XX | */* |