GET
/
v1
/
Business
/
Subsidiaries
curl --request GET \
  --url https://api.creditriskmonitor.com/v1/Business/Subsidiaries \
  --header 'Authorization: <api-key>'
{
  "Success": true,
  "Data": [
    {
      "BusinessId": 123,
      "BusinessName": "<string>",
      "Address1": "<string>",
      "Address2": "<string>",
      "CityName": "<string>",
      "StateProvinceName": "<string>",
      "PostalCode": "<string>",
      "CountryCode": "<string>",
      "FRISKScore": 123,
      "PAYCEScore": 123,
      "DBTIndex": 123
    }
  ],
  "ErrorCode": "<string>"
}

Use the Login endpoint to retrieve the SessionKey, then include it in the Authorization field for authentication.

Authorizations

Authorization
string
header
required

Enter the Session Key with the Bearer prefix, e.g. "Bearer abcde12345".

Query Parameters

id
integer

Id of the Business to get Subsidiaries for.

CustomerId
string

If you are a Trade Provider you can use your CustomerId to idenfity a Business with the CustomerId parameter.

SupplierId
string

If you have a Supplier List you can use your SupplierId to identify a Business with the SupplierId parameter.

FirstRow
integer

The first row to return.

LastRow
integer

The last row to return.

Response

200
application/json
OK
Success
boolean
Data
object[]

Holds a Subsidiary for the API

ErrorCode
string