iBill.io icon

iBill.io

Consume iBill.io API (v.0.1.4)

Overview

This node interacts with the iBill.io API to perform operations related to sessions, specifically listing active sessions. It is useful for retrieving active session data with customizable query parameters such as ordering, offset, and limit. Practical applications include monitoring active user sessions or managing session data in a CRM context.

Use Case Examples

  1. List active sessions ordered by start time in ascending order, limiting results to 100 records starting from the first record.
  2. Retrieve active sessions with a custom offset and limit to paginate through session data.

Properties

Name Meaning
Query Parameters Parameters to customize the query for listing active sessions, including order field, order direction, offset, and limit.

Output

JSON

  • sessionId - Unique identifier of the session.
  • start - Start time of the session.
  • end - End time of the session.
  • status - Current status of the session.
  • userId - Identifier of the user associated with the session.

Dependencies

  • Requires iBill.io API credentials for authentication.

Troubleshooting

  • Common issues include invalid or missing API credentials, resulting in authentication errors.
  • Incorrect query parameters may lead to empty or unexpected results; ensure parameters like order_field and limit are valid.
  • If the operation returns undefined, it indicates a problem with the API response or node configuration; returning an empty array or object is expected if no data is available.

Links

Discussion