Skip to main content

Create bulk print enrollment request V2

POST 

/api/web/v2/print

Create bulk print enrollment request. Caller requires the ISSUANCE:ADD permission to access this resource.

Note: Request body payload must not exceed 200 KB.

Request

Body

required

    ids string[]required

    List of Enrollment Ids (Id should be in Base64 string format)

    printer

    object

    required

    Details of printer to be used in bulk operation. It includes name and hopper values. For the name field, value is required but for hopper, value is optional. If value of the hopper is not provided, it will be set to 1 by default

    hopper int32

    Hopper to be used (Optional), default value is 1

    name stringrequired

    Name of the printer. Value is printer's name given while adding the printer using create printer API. Refer readPrinter/readPrinters API to get the value of 'name' field.

Responses

OK

Schema

    errorMessage string

    The error message describing the first error encountered processing the bulk operation.

    firstFailedRow int32

    The row number of the first row that failed.

    id string

    The unique UUID of the bulk operation.

    initTime date-time

    The time this bulk operation was initialized.

    name string

    The name of this bulk operation.

    processingEndTime date-time

    The time at which the bulk operation completed processing.

    processingStartTime date-time

    The time at which the bulk operation began processing.

    processingTime int64

    How long the bulk operation took to complete processing.

    rowsFailed int32

    The number of rows that have failed when processed.

    rowsProcessed int32

    The number of rows successfully processed.

    state string

    Possible values: [FAILED, CANCELLED, COMPLETED, AWAITING_DATA, PROCESSING, SCHEDULED]

    The state of the bulk operation.

    type string

    Possible values: [IMPORT_USERS, IMPORT_GROUPS, IMPORT_USER_GROUPS, IMPORT_HARDWARE_TOKENS, IMPORT_SMART_CARDS, IMPORT_ENROLLMENTS, PRINT_ENROLLMENTS, SEND_MFP, ASSIGN_ENTRUST_ST, ASSIGN_GOOGLE_ST, ASSIGN_PASSWORDS, RESET_PASSWORDS, DELETE_USERS, IMPORT_IDENTITYGUARD, IMPORT_GRIDS, EXPORT_ASSIGNEDGRIDS, EXPORT_ASSIGNEDTOKENS, EXPORT_AUDITEVENTS, EXPORT_SELFAUDITEVENTS, EXPORT_UNASSIGNEDGRIDS, EXPORT_UNASSIGNEDTOKENS, EXPORT_USERS, SET_REGISTRATION, SET_VERIFICATION, ASSIGN_GRIDS, EXPORT_USAGE, CREATE_UNASSIGNED_GRIDS, ASSIGN_HARDWARE_TOKENS, SET_GRIDS, EXPORT_ENROLLMENTS, DELETE_GROUPS, EXPORT_GROUPS, RESET_TOKENS, DELETE_ENROLLMENTS, PROVISION_SCIM, CREATE_TENANT, REVOKE_MFP, DELETE_GRIDS]

    The type of bulk operation.

Loading...