Skip to main content
GET
/
v1
/
systems
/
{system_id}
/
fields
/
{domain}
Get System Fields
curl --request GET \
  --url https://api.twine.se/v1/systems/{system_id}/fields/{domain} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "computed": true,
      "description": "<string>",
      "domain": "employee",
      "end_date": "<string>",
      "id_field": "<string>",
      "list": true,
      "nested": true,
      "original_system_path": [
        "<string>"
      ],
      "reference_domain": "employee",
      "required": [
        "create"
      ],
      "start_date": "<string>",
      "system_path": [
        "<string>"
      ],
      "type": "string",
      "unique": false,
      "values": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token for authentication

Path Parameters

system_id
string
required
domain
enum<string>
required

The data domain

Available options:
file_transfer,
project,
org_unit,
customer,
schedule,
time_report,
employee
Example:

"employee"

Response

System fields response

A response object with all available fields for the system

data
SystemDomainProperty · object[]
required