List Forms

Retrieve the forms in an account.

Settings:

URL

Method

https://online.99digital.co.il/api/v1/accounts/{account_id}/forms

JSON via GET

Authorization:

Header Parameter

Description

api_access_token

User API key; access depends on the user's permissions.

Path Parameters:

Parameter

Description

Required

account_id

Account identifier.

Yes

Request Example:

curl -s -H "api_access_token: $TOKEN" "$BASE_URL/api/v1/accounts/$ACCOUNT_ID/forms"

Response:

[
  {
    "publicId": "1",
    "accountId": "<account-id>",
    "name": "Customer request",
    "status": "published",
    "submissionCount": 0,
    "updatedAt": "2026-09-22T12:00:29.433Z"
  }
]

Response-Explain:

Parameter

Description

Root array

Form summaries.

publicId

Public form identifier (string).

accountId

Account identifier (string).

name

Form name.

status

Form status.

Enum: draft, published, archived.

submissionCount

Number of submissions reported for the form.

updatedAt

Last update timestamp in ISO 8601 format.