sahakavatar/corelogic-api

1.0.0 2025-02-05 11:49 UTC

This package is not auto-updated.

Last update: 2025-02-06 10:12:49 UTC


README

SDP Property API.

This PHP package is automatically generated by the Swagger Codegen project:

  • API version: v2.0
  • Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen

Requirements

PHP 5.5 and later

Installation & Usage

Composer

To install the bindings via Composer, add the following to composer.json:

{
  "repositories": [
    {
      "type": "git",
      "url": "https://github.com/git_user_id/git_repo_id.git"
    }
  ],
  "require": {
    "git_user_id/git_repo_id": "*@dev"
  }
}

Then run composer install

Manual Installation

Download the files and include autoload.php:

    require_once('/path/to/SwaggerClient-php/vendor/autoload.php');

Tests

To run the unit tests:

composer install
./vendor/bin/phpunit

Getting Started

Please follow the installation procedure and then run the following:

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$apiInstance = new Swagger\Client\Api\BuildingControllerApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$clip = "clip_example"; // string | Unique Clip Id

try {
    $result = $apiInstance->buildings($clip);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling BuildingControllerApi->buildings: ', $e->getMessage(), PHP_EOL;
}
?>

Documentation for API Endpoints

All URIs are relative to https://property.corelogicapi.com

Documentation For Models

Documentation For Authorization

property_auth

  • Type: OAuth
  • Flow: accessCode
  • Authorization URL:
  • Scopes:

Author