Giter Club home page Giter Club logo

js-sdk's Introduction

Procore JS SDK

CircleCI

A node.js JS SDK for the Procore API.

Note: ECMAScript target is ES5.

Requirements

  • Node.js version 10.12 and above.
  • A registered app on the Procore Developer Portal.
  • A Node.js web server (such as Express) for server authentication.

Installation

yarn add @procore/js-sdk

We recommend installing the package with yarn.

Making Requests

At the core of the package is the client object. Clients are initialized with a client_id and client_secret which can be obtained by signing up for Procore's Developer Program. The redirect_uri used for authorization must be specified on the Manage App page for the App associated with the client_id in use.

The Client object exposes #get, #post, #put, #patch, and #delete methods to you.

client.get({ base, version?, action?, params?, qs? }: EndpointConfig)
client.post({ base, version?, action?, params?, qs? }: EndpointConfig)
client.put({ base, version?, action?, params?, qs? }: EndpointConfig)
client.patch({ base, version?, action?, params?, qs? }: EndpointConfig)
client.delete({ base, version?, action?, params?, qs? }: EndpointConfig)

Example

JS-SDK-Sample-App

Use js-sdk-sample-app as a getting started example application.

All paths are relative to https://{apiHostname}/{vapid|rest/{version}}/, the @procore/js-sdk will handle expanding them.

An API version may be specified in the version attribute to the client[method] function call, or the defaultVersion is used. The default version is v1.0 unless otherwise configured when instantiating the client (client(Authorizer, RequestInit, { defaultVersion: 'vapid' })).

A company id may be specified in the companyId attribute to the client[method] function call, or the defaultCompanyId value will be used when appending the Procore-Company-Id header to the request. (client(Authorizer, RequestInit, { defaultCompanyId: 10 })).

Example Requested URL
client.get({ base: '/example/{id}', params: { id: 42 } }) https://app.procore.com/rest/v1.0/example/42
client.get({ base: '/example/{id}', params: { id: 42 }, version: 'v1.1' }) https://app.procore.com/rest/v1.1/example/42
client.get({ base: '/example/{id}', params: { id: 42 }, version: 'vapid' }) https://app.procore.com/vapid/example/42

Responses

A single API response contains the response body (JSON parsed), original request, and complete response: { body, request, response }. isomorphic-fetch is the underlying http library, so both the request and response follow its specification. See fetch for more details.

const procore = client(authorizer);
procore.get({
    base: '/projects',
    qs: { company_id: 1 }
  },
  {
    companyId: 1
  })
  .then({ body, request, response } => {
    console.log(body[0].name); // ACME Construction LLC.
    console.log(response.headers.get('Total')) // 865 (Total records for the resource)
  })
  .catch(error => {
    //Handle error
    console.log(error);
  });

or

const procore = client(authorizer);
async function getProjects() {
  const { body, request, response } = await procore
    .get({
      base: '/projects',
      qs: { company_id: 1 }
    },
    {
      companyId: 1
    })
    .catch(error => {
    // Handle error
    console.log(error);
  });
  console.log(body[0].name); // ACME Construction LLC.
  console.log(response.headers.get('Total')) // 865 (Total records for the resource)
}
getProjects();

Formatting the response

By default, the SDK tries to format the body as JSON, you can control the formatting of the body by passing the formatter option as follows:

const procore = client(authorizer);
// Create your own formatter
function formatter(response) {
  // Your custom formatter code.
  // Response supports .text() and .json()
}

// Pass the formatter configuration
procore.get({base: '/me'}, { formatter })

Multiple Procore Zones (MPZ)

All requests to the Procore API must include the Procore-Company-Id header to support Multiple Procore Zones (MPZ). See Multiple Procore Zones (MPZ) for more details. A Procore-Company-Id header will automatically be added to the request if the defaultCompanyId parameter is passed in the ClientOptions object or companyId parameter is passed in the RequestConfig object.

// Pass the defaultCompanyId configuration in the ClientOptions
const procore = client(authorizer, undefined, { defaultCompanyId: 10 });

procore.get(
  { base: "/projects" }
);

or

const procore = client(authorizer);

// Pass the companyId configuration in the RequestConfig
procore.get(
  { base: "/projects" },
  { companyId: procoreCompanyId }
);

Tests

yarn && yarn test

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/procore/js-sdk. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

  1. Create PR with version change npm version minor
  2. Merge PR
  3. Circle Ci will release a new version of the package

Use npm publish --dry-run to verify the contents of your new version.

License

The package is available as open source under the terms of the MIT License.

About Procore

Procore Logo

The @procore/js-sdk is maintained by Procore Technologies.

Procore - building the software that builds the world.

Learn more about the #1 most widely used construction management software at procore.com

js-sdk's People

Contributors

kespinola avatar gilmcquillan avatar pnispel avatar yordis avatar dancingshell avatar brock-noah avatar bravely avatar remyyounes avatar edwlan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.