Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 2.59 KB

README.md

File metadata and controls

56 lines (36 loc) · 2.59 KB

Industries

(industries)

Overview

Available Operations

  • 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.

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.

Example Usage

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)

Parameters

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.

Response

operations.ListIndustriesResponse

Errors

Error Type Status Code Content Type
errors.APIError 4XX, 5XX */*