List all reseller organizations

Returns a list of reseller organizations. The reseller organizations are returned sorted by creation date in ascending order.

GET/v3/resellers/{resellerId}/organizations
JWT
reseller:organization:read

Parameters

NameTypeInDescription
resellerId*objectpath
pageintegerqueryThe page number.
limitintegerqueryThe number of records per page. Must be a number between 1 and 100.
sortstringqueryThe sort string to sort the returned records e.g. "-createdAt"
nameobjectqueryName of the organization
emailobjectqueryNotification email address of the organization.
resellerIdobjectqueryUnique identifier for the reseller.
searchstringquerySearch string.
idobjectqueryID of the resource.
createdAtobjectqueryDate of creation
updatedAtobjectqueryDate of last update

Responses

200 OK
[
  {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "name": "string",
    "email": "string",
    "description": "string",
    "allowedUsers": 0,
    "address": {
      "addressLine1": "string",
      "addressLine2": "string",
      "city": "string",
      "state": "string",
      "country": "string",
      "postalCode": "string"
    }
  }
]