Returns a list of partners for organization

Request Information

URI Parameters

Name Description Type Additional information
pageSize

Number of results to return (defaults to 25, max of 200)

integer

Default value is 25

page

Page number (starting page is 1)

integer

Default value is 1

Body Parameters

None.

Sample Request

https://api.servicereef.com/v1/partners?pageSize={pageSize}&page={page}

Response Information

Resource Description

PartnersResult
Name Description Type Additional information
PageInfo

PageModel
Results

Collection of PartnerModel

Try API

Try this endpoint by entering your credentials and using the API Explorer.

Try With API Explorer

Response Formats

application/json, text/json

Sample:
{
  "PageInfo": {
    "TotalRecords": 1,
    "Page": 2,
    "PageSize": 3
  },
  "Results": [
    {
      "OrganizationId": 1,
      "Name": "sample string 2",
      "ServiceReefUrl": "https://sample string 8.servicereef.com/",
      "WebsiteUrl": "http://sample string 9",
      "ContactEmail": "sample string 3",
      "ContactPhone": "sample string 4",
      "LogoUrl": "https://sample string 8.servicereef.com/assets/organizations/sample string 6",
      "IsFeaturedPartner": true
    },
    {
      "OrganizationId": 1,
      "Name": "sample string 2",
      "ServiceReefUrl": "https://sample string 8.servicereef.com/",
      "WebsiteUrl": "http://sample string 9",
      "ContactEmail": "sample string 3",
      "ContactPhone": "sample string 4",
      "LogoUrl": "https://sample string 8.servicereef.com/assets/organizations/sample string 6",
      "IsFeaturedPartner": true
    }
  ]
}