Skip to main content

Executor

idstring

Unique identifier

namestringnullable

Name

orgIdstringnullable

Organization external ID

typestring

Type

contactPersons object[]

Executor contact persons

  • Array [
  • namestring

    Contact person name

    Example: John Doe
    titlestringnullable

    Contact person title

    Example: Factory Manager
    emailstring

    Contact person email

    phoneNumberstring

    Contact person phone number

    Example: 1234567890
  • ]
  • isPlaceholderboolean

    Whether this is a placeholder executor

    Example: false
    ableToSubmitAssessmentboolean

    Whether this executor can submit the assessment

    Example: true
    isLeadboolean

    Whether this executor is the lead

    Example: true
    assignedRoles object[]

    Roles assigned to this executor

  • Array [
  • namestring

    Assigned role name

    Example: Lead Auditor
  • ]
  • Executor
    {
    "id": "string",
    "name": "string",
    "orgId": "string",
    "type": "string",
    "contactPersons": [
    {
    "name": "John Doe",
    "title": "Factory Manager",
    "email": "[email protected]",
    "phoneNumber": 1234567890
    }
    ],
    "isPlaceholder": false,
    "ableToSubmitAssessment": true,
    "isLead": true,
    "assignedRoles": [
    {
    "name": "Lead Auditor"
    }
    ]
    }