GET
/
api
/
v1
/
utils
/
form-field
/
list
/
{class}
Get form fields by class
curl --request GET \
  --url https://demoapi.saasphereltd.com/api/v1/utils/form-field/list/{class} \
  --header 'Authorization: Bearer <token>'
{
  "status": "00",
  "message": "OK",
  "data": [
    {
      "id": 1,
      "name": "first_name",
      "label": "First name",
      "type": "string"
    }
  ]
}

Authorizations

Authorization
string
header
required

Paste only the token (no "Bearer " prefix).

Path Parameters

class
string
required

The class identifier for the form fields to retrieve.

Response

A list of form fields

status
string
Example:

"00"

message
string
Example:

"OK"

data
object[]