Check In (Batch)


    # Here is a curl example
    curl \
    -X POST "http://localhost:8888/api/PropertyCard/CheckInBatch" \
    -H "Authorization: {token}" \
    -H "Content-Type: application/json" \
    -d '{
    "jsonData": [{"record_guid":"123","object_id":123},{"record_guid":"123","object_id":124}],
    "bom_level":1,
    }'

This method allows you to Check In multiple records in a batch from different objects. You can Check In only the records for which you have permission, otherwise the records will be skipped.

To Check In multiple records in a batch, you need to make a POST call to the following url:
http://localhost:8888/api/PropertyCard/CheckInBatch

PDM Objects are not supported.



    Result example :
    [
        {
            "Success": "boolean",
            "Message": "string",
            "Data": object,
            "CustomAction": Dictionary<object, object> ,
            "CustomAttributes":Dictionary<object, object>
        }
    ]

From Body Parameters

Field Parameter Type Type Description
jsonData body string Json Data should be in this format: [{"record_guid":"x","object_id":y},{"record_guid":"x","object_id":y}]
bom_level body integer Bom level
Authorization header string Add Authorization header token