PhpIPAM List

PhpIPAM List

Certified

List phpIPAM sections

Returns all sections visible to the authenticated user.

yaml
type: io.kestra.plugin.phpipam.ipam.section.List

List all sections

yaml
id: phpipam_section_list
namespace: company.team
tasks:
  - id: list_sections
    type: io.kestra.plugin.phpipam.ipam.section.List
    baseUrl: "https://ipam.example.com"
    appId: myapp
    auth:
      appToken: "{{ secret('PHPIPAM_APP_TOKEN') }}"
Properties

Application ID

The API application identifier configured in phpIPAM under Administration → API. It appears in the path segment /api/{appId}/.

Authentication

Provide either appToken for static App-token authentication, or username + password to obtain a per-run session token. Supplying both, or neither, raises a validation error.

Definitions
appTokenstring

Static App token

A token generated in the phpIPAM administration panel under Administration → API. Sent to phpIPAM via the token request header. Mutually exclusive with username / password.

passwordstring

Password

Password for the phpIPAM user. Must be provided together with username.

usernamestring

Username

phpIPAM username used to obtain a per-session token via POST /api/{appId}/user/. Must be provided together with password. Mutually exclusive with appToken.

Base URL of the phpIPAM instance

Root URL of the phpIPAM instance, e.g. https://ipam.example.com. No trailing slash needed.

DefaultFETCH
Possible Values
STOREFETCHFETCH_ONENONE

Fetch type

Controls how results are returned:

  • FETCH (default): return the full list in sections + total count.
  • FETCH_ONE: return only the first section in section + total count.
  • STORE: write all sections as newline-delimited JSON to Kestra internal storage, return uri + total count.
  • NONE: return only the total count, no rows.
Defaultfalse

Disable TLS certificate validation

Set to true to trust all TLS certificates, including self-signed ones. Intended for development or internal deployments only.

Reference (ref) of the pluginDefaults to apply to this task.

Section

First section returned. Populated for FETCH_ONE fetch type.

Definitions
DNSstring
descriptionstring
editDatestring
idstring
masterSectionstring
namestring
orderstring
permissionsstring
showSupernetOnlystring
showVLANstring
showVRFstring
strictModestring
subnetOrderingstring

List of sections

All sections returned by the phpIPAM API. Populated for FETCH fetch type.

Definitions
DNSstring
descriptionstring
editDatestring
idstring
masterSectionstring
namestring
orderstring
permissionsstring
showSupernetOnlystring
showVLANstring
showVRFstring
strictModestring
subnetOrderingstring
Default0

Total

Total number of sections returned by the API.

Formaturi

URI

Internal storage URI of the newline-delimited JSON file. Populated for STORE fetch type.