Skip to content

Introduction

Aimsio provides a set of API endpoints and supported actions to facilitate communication with external software platforms / ERPs.

Each Aimsio account can access two server options: sandbox and portal

  • sandbox is the test environment we used to implement and test configuration changes for an account before live deployment.

  • portal is the live environment where accounts store their live transactions

Authentication

Our API utilizes basic username and password authentication to access the API.

If you already have an Admin username set up for your account inside Aimsio, this can be used for API authentication. However, the best practice would be to set up a separate user for integration purposes and keep this set of credentials private only to the developer.

Aimsio users also require specific permissions to access our API. Please contact our support/integration team so they can enable the required permissions.

Throughput limitation

We currently limit API calls after calls exceed more than 10 calls per second. If our API receives too many requests (ie: if the queue takes longer than 5 seconds to return the call), the request will timeout.

Up to 10 parallel calls are permitted. We do not limit the number of sequential calls. If your organization requires more headroom to complete calls to our API, please get in touch with us.

Usage - Querying data

For most entities with GET requests supported, there are two endpoints we supported:

  • GET all objects of that type

  • GET one speficic object based on its unique identifier (GUID/Id)

When you send a GET all request, the system will return an JSON array, and each JSON contains the following properties:

  • dtype: The object type

  • guid/id: Unique identifier of the object, generated by the Aimsio system

  • updatedAt: Object's last update timestamp in epoch millseconds

Using the returned Guid or ID, you can then query each specific object from the GET single request.

Usage - Posting data

To upload data, please review the object properties and example requests for each POST endpoint.

For our Master Data endpoints, you can create/edit new entries into Aimsio system.

For some other endpoints like Invoice or Timecard, we don't allow POSTing new entries, but updating status of existing entries are supported.

Object types like NRBs or Crew/Equipment records are included in the JobOrder GET response, but have to be POSTed through their own endpoints.

  • Crew records: Employee endpoint

  • Equipment records: Equipment endpoint

  • NRB records: NRB endpoint

Download OpenAPI description
Languages
Servers
Mock server

https://api.aimsio.com/_mock/aimsio_api/

Sandbox

https://sandbox.aimsio.com/

Production

https://portal.aimsio.com/

Operations

Request

Retrieve one billable item object by provided GUID

Security
basicAuth
Path
billableItemGuidstringrequired
curl -i -X GET \
  -u <username>:<password> \
  'https://api.aimsio.com/_mock/aimsio_api/rest/api/standard/v1/BillableItem/{billableItemGuid}'

Responses

OK

Bodyapplication/json
billableItemGuidstring

Unique identifier and is automatically generated by Aimsio system. This is only used to update existing object

billableItemCodestringrequired

Unique identifier, visible to end users. Required for creating or updating an object

billableItemNamestringrequired
billableItemTypeUnamestring

Required when creating a new object. Either billableItemTypeUname or billableItemTypeName is required

Enum"labour""equipment""material""service""unit_billing""per_diem""accommodation""mileage""surcharge"
billableItemTypeNamestringrequired

Required when creating a new object. Either billableItemTypeUname or billableItemTypeName is required

billableItemIsTradebooleanrequired

Set this to true if billableItemTypeName = 'Labour'

billableItemIsEquipmentbooleanrequired

Set this to true if billableItemTypeName = 'Equipment'

billableItemCategorystring
billableItemDescriptionstring
billableItemStatusstring
billableItemDefaultRatenumberrequired
billableItemDefaultRateTypestringrequired

Either billableItemDefaultRateType or billableItemDefaultRateTypeUname is required'

billableItemDefaultRateTypeUnamestring

Either billableItemDefaultRateType or billableItemDefaultRateTypeUname is required'

billableItemDefaultRate2number
billableItemDefaultRateType2string

If billableItemDefaultRate2 is provided, either billableItemDefaultRateType2 or billableItemDefaultRateTypeUname2 is required

billableItemDefaultRateTypeUname2string

If billableItemDefaultRate2 is provided, either billableItemDefaultRateType2 or billableItemDefaultRateTypeUname2 is required

billableItemDefaultRate3number
billableItemDefaultRateType3string

If billableItemDefaultRate3 is provided, either billableItemDefaultRateType3 or billableItemDefaultRateTypeUname3 is required

billableItemDefaultRateTypeUname3string

If billableItemDefaultRate3 is provided, either billableItemDefaultRateType3 or billableItemDefaultRateTypeUname3 is required

billableItemDefaultCostnumber

Cost Rates are only available for certain customer tiers

billableItemDefaultCost2number

Cost Rates are only available for certain customer tiers

billableItemDefaultCost3number

Cost Rates are only available for certain customer tiers

billableItemGlAccountNumberstring

Applicable to accounts with GL Account master data enabled. Must be an existing GL Account number

billableItemGlAccountInfostringread-only
billableItemCreatedAtintegerread-only

Timestamp in epoch millseconds

billableItemCreatedByUserNamestringread-only
billableItemCreatedByFullNamestringread-only
billableItemUpdatedAtinteger

Timestamp in epoch millseconds

billableItemLastModifiedByUserNamestringread-only
billableItemLastModifiedByFullNamestringread-only
billableItemIsDeletedbooleanread-only
billableItemFormDataobject(Additional Form Data (attached to objects))

Read-only schema used in GET requests to display object's custom fields data. For POST requests, refer to CustomFieldDataList

Response
application/json
{ "billableItemGuid": "587bbf61-0d55-4098-9470-0ae1a71cd41b", "billableItemCode": "ACC-CAMP", "billableItemName": "Camp Accommodation", "billableItemTypeUname": "accommodation", "billableItemTypeName": "Accommodation", "billableItemIsTrade": false, "billableItemIsEquipment": false, "billableItemCategory": "", "billableItemDescription": "Camp charges for full lodging, meals, etc.", "billableItemStatus": "CampCamp charges for full lodging, meals, etc.", "billableItemDefaultRate": "1050.000", "billableItemDefaultRateType": "Each", "billableItemDefaultRate2": "850.000", "billableItemDefaultRateType2": "Daily", "billableItemDefaultRate3": "275.000", "billableItemDefaultRateType3": "Hourly", "billableItemDefaultCost": "525.000", "billableItemDefaultCost2": null, "billableItemDefaultCost3": null, "billableItemGlAccountNumber": null, "billableItemGlAccountInfo": null, "billableItemCreatedAt": 1687892271809, "billableItemCreatedByUserName": "admin@concorde-sandbox", "billableItemCreatedByFullName": "Aimsio Concorde", "billableItemUpdatedAt": 1736872573916, "billableItemLastModifiedByUserName": "admin@concorde-sandbox", "billableItemLastModifiedByFullName": "Aimsio Concorde", "billableItemIsDeleted": false }

Request

Create/update pricebook(s)

Security
basicAuth
Bodyapplication/json
priceBookListArray of objects(Pricebook)
curl -i -X POST \
  -u <username>:<password> \
  https://api.aimsio.com/_mock/aimsio_api/rest/api/standard/v1/PriceBook \
  -H 'Content-Type: application/json' \
  -d '{
    "priceBookList": [
      {
        "priceBookName": "Default",
        "priceBookAction": "ADD_OR_UPDATE",
        "priceItemList": [
          {
            "priceItemBillableItemCode": "LAB-TRUCKDRV",
            "priceItemBillableItemName": "Truck Driver",
            "priceItemRate": 500,
            "priceItemRateTypeUname": "each_rate_type",
            "priceItemRate2": 750,
            "priceItemRateTypeUname2": "daily_rate_type",
            "priceItemRate3": 0,
            "priceItemRateTypeUname3": ""
          },
          {
            "priceItemBillableItemCode": "54",
            "priceItemBillableItemName": "Pickup Truck",
            "priceItemRate": 300,
            "priceItemRateTypeUname": "each_rate_type",
            "priceItemRate2": 0,
            "priceItemRateTypeUname2": "",
            "priceItemRate3": 0,
            "priceItemRateTypeUname3": ""
          }
        ]
      }
    ]
  }'

Responses

Bodyapplication/json
dtypestring
Default "IntegrationImportResult"
idinteger
guidstring
importConfigurationstring
numberOfEntitiesCreatedinteger
numberOfEntitiesEditedinteger
numberOfEntitiesEditedWithErrorsinteger
numberOfEntitiesNotImportedDueToErrorsinteger
extrastring
noticesArray of objects
updatedAtinteger
importResultTypestring
numberOfEntitiesImportedinteger
Response
application/json
{ "dtype": "IntegrationImportResult", "id": 0, "guid": "4b3f8eef-4307-4068-ba88-9ef491945122", "importConfiguration": null, "numberOfEntitiesCreated": 0, "numberOfEntitiesEdited": 1, "numberOfEntitiesEditedWithErrors": 0, "numberOfEntitiesNotImportedDueToErrors": 0, "extra": null, "notices": [], "updatedAt": 1746815305412, "importResultType": null, "numberOfEntitiesImported": 1 }

Request

Retrieve all pricebooks in an account.

Security
basicAuth
curl -i -X GET \
  -u <username>:<password> \
  https://api.aimsio.com/_mock/aimsio_api/rest/api/standard/v1/PriceBook

Responses

OK

Bodyapplication/json
valueArray of objects
Response
application/json
{ "value": [ { … }, { … }, { … }, { … } ] }
Operations
Operations
Operations