CoreLogic (Cotality) · Example Payload

Corelogic Trestle Oauth Token Example

Climate RiskCoreLogicCotalityDirect Web APIHazard DataInsurance DataListingsMatrix MLSMortgage DataMLSODataOneHomeOpenID ConnectParticipant ReportingProperty DataReal-EstateRESO Data DictionaryRESO Web APIRETSTax DataTrestle

Corelogic Trestle Oauth Token Example is an example object payload from CoreLogic (Cotality), with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.cotality.com/trestle/oidc/connect/token",
    "headers": {
      "Content-Type": "application/x-www-form-urlencoded"
    },
    "form": {
      "client_id": "<CLIENT_ID>",
      "client_secret": "<CLIENT_SECRET>",
      "grant_type": "client_credentials",
      "scope": "api"
    }
  },
  "response": {
    "status": 200,
    "headers": { "Content-Type": "application/json" },
    "body": {
      "access_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6...",
      "expires_in": 28800,
      "token_type": "Bearer",
      "scope": "api"
    }
  }
}