Pipeliner API

Getting access, Developing, Testing

Back to Pipeliner

ProcessActivityLogs.batch_create_or_update

Create or update an batch of ProcessActivityLogs

Input

type: object properties: parameters: type: object properties: validation-level: type: integer format: int32 description: >- Specify validation level of ProcessActivityLogs on change. Use them as bit mask: 0 - validate each field on entity, 2 - validate only changed fields, 4 - validate only system fields, 8 - allows to override readonly fields, 16 - allows to set entity on deleted relationship. rollback-method: type: integer format: int32 description: >- Specify rollback method for ProcessActivityLogs. 0 - rollback all, 1 - rollback only failed records. title: Parameters data: type: array items: properties: actor_id: type: string format: uuid example: 01234567-abcd-dcba-ffff-000000000000 description: Relation to single entity instance. application_id: type: string format: uuid example: 01234567-abcd-dcba-ffff-000000000000 description: Relation to single entity instance. cpu_run_time: type: number format: double example: '4.32' description: Decimal number. end_time: type: string format: date-time example: '2019-01-01T00:00:00.000Z' description: Datetime information. is_test_run: type: boolean example: false description: Boolean value. parent_process_ids: type: object description: Field containing json. process_id: type: string format: uuid example: 01234567-abcd-dcba-ffff-000000000000 description: Relation to single entity instance. run_id: type: string format: uuid example: 01234567-abcd-dcba-ffff-000000000000 description: >- Generic field wrapping sqlalchemy column, configurable by constructor. Good for one-of fields / generated fields. start_time: type: string format: date-time example: '2019-01-01T00:00:00.000Z' description: Datetime information. status: type: integer description: 'Integer enum value: 1 - Ok, 2 - Warning, 3 - Error' example: 1 enum: - 1 - 2 - 3 id: description: ID of object to update. type: string format: uuid type: object title: Data

Output

type: object properties: success: type: boolean example: true description: True when response succeeded, false on error. data: type: array items: oneOf: - type: string description: And ID of created / updated entity. format: uuid - properties: http_status: description: HTTP status code type: integer example: 400 code: description: Internal API error code type: integer example: 117 name: description: Name of the API error type: string example: ERROR_PARAMETER_INVALID message: description: Description of the API error type: string success: description: Always false on error. type: boolean example: false required: - success - http_status