ScalepointDeveloper Portal
Policy ServicesOperations

Search Customer

search for customers, policies and objects

GET
/customers

search for customers, policies and objects

Authorization

oAuth2ClientCredentials
AuthorizationBearer <token>

Oauth2 with clientCredential flow

In: header

Query Parameters

date*string
Formatdate
q*string
limit*number

Defines the limit of rows the endpoints will return. 'after' parameter denfines where the next page starts

after?number

Specifies where the page starts example, ?limit=10&after=20

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/customers?date=2019-08-24&q=string&limit=0"
[  {    "customerId": "string",    "number": "string",    "fullName": "string",    "taxId": "string",    "address": "string",    "description": "string",    "policyMatches": [      {        "description": "string",        "startDate": "2019-08-24",        "endDate": "2019-08-24",        "isActive": true,        "statusText": "string",        "policyVersionId": "string",        "number": "string",        "product": "string",        "policyObjectMatches": [          {            "description": "string",            "startDate": "2019-08-24",            "endDate": "2019-08-24",            "isActive": true,            "statusText": "string",            "policyObjectVersionId": "string"          }        ]      }    ]  }]