Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.8 KB

README.md

File metadata and controls

51 lines (31 loc) · 1.8 KB

IndustriesSDK

(industries)

Overview

Information about industries and their merchant codes.

Available Operations

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

Example Usage

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

Parameters

Parameter Type Required Description
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

models.Industries

Errors

Error Type Status Code Content Type
models.SDKError 4XX, 5XX */*