# Here is a curl example
curl \
-X POST "http://localhost:8888/api/PropertyCard/CheckOutBatch" \
-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 Out multiple records in a batch from different objects. You can Check Out only the records for which you have permission, otherwise the records will be skipped.
To Check Out multiple records in a batch, you need to make a POST call to the following url:
http://localhost:8888/api/PropertyCard/CheckOutBatch
PDM Objects are not supported.
Result example :
[
{
"Success": "boolean",
"Message": "string",
"Data": object,
"CustomAction": Dictionary<object, object> ,
"CustomAttributes":Dictionary<object, object>
}
]
| 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 |