Skip to content

AryeoHQ/aryeo-api-js-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Aryeo SDK

Introduction

This is an auto-generated client SDK for interfacing with the Aryeo API. We support a variety of languages and frameworks that are a great starting point for experimenting with the API. If there is an additional language or framework that you want to see supported, then please reach out and make a contribution!

Dart Go Node JS PHP Ruby Rust Swift

Authentication

To start using the Aryeo API, you will need to generate an API key from your group's developer settings. Then, make sure to provide your API key as a bearer token. Requests made without an API key will result in a 401 Unauthorized error.

Example: Authorization: Bearer {API_KEY}

Installation

Add the following block to package.json:

"dependencies": {
  "aryeo": "github:AryeoHQ/aryeo-api-js-sdk"
}

Getting Started

var Aryeo = require('aryeo');

var defaultClient = Aryeo.ApiClient.instance;

var JWT = defaultClient.authentications['JWT'];
JWT.accessToken = "API_KEY"

var api = new Aryeo.ListingsApi()
api.getListingsId("UUID", (error, data, response) => {
  if (error) {
    console.error(error);
  } else {
    console.log(`${data.data.address.address_line_1}`);
  }
});

Documentation for API Endpoints

All URIs are relative to https://api.aryeo.com/v1

Class Method HTTP request Description
Aryeo.AppointmentsApi getAppointments GET /appointments List all appointments.
Aryeo.AppointmentsApi getAvailableDates GET /scheduling/available-dates Fetch available days for a user or group
Aryeo.AppointmentsApi getAvailableTimeslots GET /scheduling/available-timeslots Fetch available timeslots for a user or group
Aryeo.AppointmentsApi getUnconfirmedAppointments GET /unconfirmed-appointments List all unconfirmed appointments.
Aryeo.AppointmentsApi getUnconfirmedAppointmentsId GET /unconfirmed-appointments/{unconfirmed_appointment_id} Retrieve an unconfirmed appointment.
Aryeo.AppointmentsApi putAppointmentsAppointmentIdCancel PUT /appointments/{appointment_id}/cancel Cancel an appointment.
Aryeo.AppointmentsApi putAppointmentsAppointmentIdReschedule PUT /appointments/{appointment_id}/reschedule Reschedule an appointment.
Aryeo.ListingsApi getListings GET /listings List all listings.
Aryeo.ListingsApi getListingsId GET /listings/{listing_id} Retrieve a listing.
Aryeo.OrdersApi getOrders GET /orders List all orders.
Aryeo.OrdersApi getOrdersId GET /orders/{order_id} Retrieve an order.
Aryeo.OrdersApi getProducts GET /products List all products.
Aryeo.OrdersApi postOrders POST /orders Create an order.
Aryeo.VendorsApi getVendors GET /vendors List all vendors.
Aryeo.VendorsApi getVendorsId GET /vendors/{vendor_id} Retrieve a vendor.

Documentation for Models

Documentation for Authorization

Token

  • Type: Bearer authentication

Author

jarrod@aryeo.com