Variant: CMDS

post
Body
Departmentsstring · uuid[] | nullableOptional
Learnersstring · uuid[] | nullableOptional
Measurementsinteger · int32[] | nullableOptional
ProfileConditioninteger · int32Optional
LearnerMustHaveProfilebooleanOptional
DepartmentEmploymentboolean | nullableOptional
OrganizationEmploymentboolean | nullableOptional
DataAccessboolean | nullableOptional
Responses
200
OK
application/json
post
POST /v2/e01/api/plugin/cmds/compliance-summaries HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 254

{
  "Departments": [
    "123e4567-e89b-12d3-a456-426614174000"
  ],
  "Learners": [
    "123e4567-e89b-12d3-a456-426614174000"
  ],
  "Measurements": [
    1
  ],
  "ProfileCondition": 1,
  "LearnerMustHaveProfile": true,
  "DepartmentEmployment": true,
  "OrganizationEmployment": true,
  "DataAccess": true
}
200

OK

[
  {
    "Department": {
      "Identifier": "123e4567-e89b-12d3-a456-426614174000",
      "Type": "text",
      "Name": "text",
      "Slug": "text",
      "Description": "text"
    },
    "Learner": {
      "Identifier": "123e4567-e89b-12d3-a456-426614174000",
      "Type": "text",
      "Name": "text",
      "Slug": "text",
      "Description": "text"
    },
    "PrimaryProfile": {
      "Identifier": "123e4567-e89b-12d3-a456-426614174000",
      "Type": "text",
      "Name": "text",
      "Slug": "text",
      "Description": "text"
    },
    "Measurement": {
      "Key": 1,
      "Name": "text",
      "Score": 1,
      "Required": 1,
      "Satisfied": 1,
      "Expired": 1,
      "NotCompleted": 1,
      "NotApplicable": 1,
      "NeedsTraining": 1,
      "SelfAssessed": 1,
      "Submitted": 1,
      "Validated": 1
    }
  }
]

Was this helpful?