(industries)
- list - Returns a list of all industry titles and their corresponding MCC/SIC/NAICS codes. Results are ordered by title.
To access this endpoint using an access token
you'll need to specify the /profile-enrichment.read
scope.
Returns a list of all industry titles and their corresponding MCC/SIC/NAICS codes. Results are ordered by title.
To access this endpoint using an access token
you'll need to specify the /profile-enrichment.read
scope.
from moovio_sdk import Moov
from moovio_sdk.models import components
with Moov(
security=components.Security(
username="",
password="",
),
) as moov:
res = moov.industries.list()
# Handle response
print(res)
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.ListIndustriesRequest | ✔️ | The request object to use for the request. |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.ListIndustriesResponse
Error Type | Status Code | Content Type |
---|---|---|
errors.APIError | 4XX, 5XX | */* |