autocomplete

Returns all recurring transactions of the user returned in a basic auto-complete array.

get/v1/autocomplete/recurring

Query parameters

querystring string

The autocomplete search query.

limitinteger

The number of items returned.

Headers

X-Trace-Idstring uuid
Example:40c71bbb-c676-4f24-83cf-cc725d7d7a00

Unique identifier associated with this request.

Response

A list of recurring transactions with very basic information.

idstring string required
namestring string required

Name of the recurrence found by an auto-complete search.

descriptionstring string

Description of the recurrence found by auto-complete.

activeboolean

Is the recurring transaction active or not?

Example response

[
  {
    "id": "2",
    "name": "Yearly bill",
    "description": "Should trigger daily.",
    "active": true
  }
]

Changes