GET - Service Provider

Retrieves information about the specified Service Provider / Enterprise.

Parameters

  • service_provider_id (str): Target Service Provider / Enterprise to retreive information on.

Returns

  • Dict: A Dictionary about the Service Provider such as it's default domain and resellerID.

How To Use:

The below code will pull information for the specified Service Provider.

my_api.service_providers.get_service_provider(
    "SERVICE123",
)

Example Returned Data of Device (Formatted)

{
  "isEnterprise": true,
  "defaultDomain": "website.com",
  "serviceProviderName": "ent odin mock",
  "supportEmail": "[email protected]",
  "contact": {
    "contactName": "Contact Team",
    "contactNumber": "111-111-1111",
    "contactEmail": "[email protected]"
  },
  "address": {
    "addressLine1": "111 This St",
    "city": "Somecity",
    "stateOrProvince": "New York",
    "zipOrPostalCode": "12345",
    "country": "TE"
  },
  "useServiceProviderLanguages": false,
  "serviceProviderId": "SERVICE123"
}

Last updated

Was this helpful?