Skip to main content
All CollectionsDevelopers
Next Plus API Guide
Next Plus API Guide
Asaf Cohen avatar
Written by Asaf Cohen
Updated over a month ago

Next Plus offers a comprehensive REST API that supports various types of requests and methods, enabling users to perform all available actions programmatically.

API Overview

  • Type: REST API

  • Documentation: While not all methods are fully documented, you can contact the technical team for specific examples and assistance.

Getting Started

Prerequisites

  1. Instance URL

  2. Username and Password

  3. User account with the "API" checkbox enabled

Postman Collection

To help you explore and test the API, we provide a Postman Collection with selected API endpoints.

  1. Download the Postman Collection: Next Plus Postman Collection

  2. Import the collection into Postman

  3. Configure the collection:

    • Click on the Collection root folder (Next Plus)

    • Navigate to the "Variables" tab

    • Update the "baseUrl" variable's "CURRENT VALUE" with your instance URL (e.g., https://company-name.nextplus.io)

    • Save the changes

Authentication

  1. Open the "Login" POST request

  2. Update the request body with your username and password

  3. Execute the request to obtain an access token

  4. Copy the access token

  5. Paste the token in the Collection's "Variables" tab under the "auth" value

  6. Save the changes

Creating Work Orders via API

Follow these steps to create a work order using the API:

  1. Open the "Create Workorder" request under the "Workorder" folder

  2. Review and update the request body as needed
    Note that extraWorkorders and workordersConfigurations are required variables and should kept as empty object and array.

  3. Execute the request

  4. Check the server response for details of the newly created work order

By following this guide, you'll be able to authenticate and interact with the Next Plus API, including creating work orders programmatically.

Did this answer your question?