Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 48 Next »

The Resource API is used to access, create, and modify the different resources on your business' account. The Resource API is connected to the Locations, Staff, and Services APIs, as resources are used by both staff and services at particular locations. 

On this page




Resource API Endpoints

These are the endpoints that are available under the /resource path, which lists all the different resources you have added to the services or locations on your business account.

Endpoint

Description

GET /resource

Returns all resource objects on an account in array format.

GET /resource/{resourceId}

Returns a JSON object for specified resource.

GET /resource/{resourceId}/isBusy/{apptDate YYYY-MM-DD}/{Appt startTim HHMM}/{Appt endTime HHMM}

Returns as true or false depending on whether the resource is or isn’t busy during the date and time passed in the call.

POST /resource

Creates a new resource object on an account.

Request body/payload:  Must pass a resource object in the request body/payload.

For these calls, you need to pass a resource object with all required fields and any fields you want to set filled in the body of the payload. We have an example of a resource object in the responses section below and have indicated the required fields in the object values table at the bottom of this page.

PUT /resource

Updates specified resource object. 

Request body/payload: Must pass a resource object with desired changes made in the request body/payload.

For these calls, you need to pass a resource object with all required fields and any fields you want to update filled in the body of the payload. We have an example of a resource object in the responses section below and have indicated the required fields in the object values table at the bottom of this page.

DELETE /resource/{resourceId}Removes a resource object from view by setting its active property to false.




Resource API Parameters

There are no parameters included with resource calls.




Resource API Responses

GET /resources
[{
    “active”: true,
    “businessId”: 43111,
    “createdDate”: 1531775107639,
    “createdUser”: "JoeSchmo",
    "locationId": 81181,
    “locationName”: "Beach Office",
    "modifiedDate": 1531775107639,
    "modifiedUser": "JoeSchmo",
    "name": "Surfboard A",
    "reasonIdList": [159578],
    "reasonIdListText": "159564",
    "reasons": ["Bb"],
    "resourceId": 2919
}]
GET /resource/{resourceId}
[{
    “active”: true,
    “businessId”: 43111,
    “createdDate”: 1528820215670,
    “createdUser”: "JoeSchmo",
    "locationId": 81181,
    “locationName”: "Beach Office",
    "modifiedDate": 1528820215670,
    "modifiedUser": "JoeSchmo",
    "name": "Large movable table",
    "reasonIdList": [158196],
    "reasonIdListText": "158196",
    "reasons": ["HipHop"],
    "resourceId": 2589
}]
POST /resource
{
    “active”: true,
    “businessId”: 43111,
    “createdDate”: 1528820215670,
    “createdUser”: "JoeSchmo",
    "locationId": 81181,
    “locationName”: "Beach Office",
    "modifiedDate": 1528820215670,
    "modifiedUser": "JoeSchmo",
    "name": "Strobe Light",
    "reasonIdList": [158196],
    "reasonIdListText": "158196",
    "reasons": ["HipHop"],
    "resourceId": 3612
}
PUT /resource
{
    “active”: true,
    “businessId”: 43111,
    “createdDate”: 1531775107639,
    “createdUser”: "JoeSchmo",
    "locationId": 81181,
    “locationName”: "Beach Office",
    "modifiedDate": 1531775107639,
    "modifiedUser": "JoeSchmo",
    "name": "Surfboard A",
    "reasonIdList": [159578],
    "reasonIdListText": "159578",
    "reasons": ["Bb"],
    "resourceId": 2919
}




Resource API Request Body/Payloads

POST /resource
{
    "locationId": 282639,
    "name": "Furminator",
    "reasonIdList": [255109, 159330]
}
PUT /resource
{
    "active": true,
    "businessId": 43111,
    "createdDate": 1531934814568,
    "createdUser": "JoeSchmo",
    "locationId": 87877,
    "locationName": "Office 1",
    "modifiedDate": 1531934814568,
    "modifiedUser": "JoeSchmo",
    "name": "Ball",
    "reasonIdList": [240094, 436103],
    "reasonIdListText": "159578,159330,158196",
    "reasons": ["Pooch primping"],
    "resourceId": 2985
}




Resource Object Values

Property nameTypeRequiredWritableDescription
activebooleanYes
Indicates whether or not specified resource should return on GET calls.
businessIdintegerYes
Provides unique numeric ID of the business to which the specified resource belongs. 
createdDateinteger

Displays as the date the specified resource was created in milliseconds elapsed since January 1, 1970 00:00:00 UTC form.
createdUserstring

Displays the username of user who created the specified resource.
locationIdintegerYes

Provides unique numeric ID of location of the specified resource.

locationNamestringYesYesProvides the public name of location of the specified resource.

modifiedDate

integer



Displays as date the specified resource was last modified in milliseconds elapsed since January 1, 1970 00:00:00 UTC form.

modifiedUserstring

Displays the username of user who last modified the specified resource.

namestring
YesDisplays as name given to the specified resource on your account.
reasonIdListarray
YesDisplays as list of IDs of services that use the specified resource.
reasonIdListTextstring
YesDisplays the list of IDs of services that use the specified resource in text format.
reasonsarray
YesDisplays as list of service names that use the specified resource in array format.
resourceIdintegerYes, on PUT calls
Provides unique numerical ID of the specified resource.
  • No labels