# Here is a curl example
curl \
-X POST "http://localhost:8888/api/PropertyCard/CheckOut" \
-H "Authorization: {token}" \
-H "Content-Type: application/json" \
-d '{
"object_id": 123,
"record_guid": "123",
"bom_level":1,
}'
This method allows you to Check Out a specific record.
To Check Out a specific record, you need to make a POST call to the following url:
http://localhost:8888/api/PropertyCard/CheckOut
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 |
|---|---|---|---|
| object_id | body | long | Object Id. |
| record_guid | body | string | Record Guid. You can get from another method (http://localhost:8888/api/Objects/ObjectRecords). |
| bom_level | body | integer | Bom level |
| Authorization | header | string | Add Authorization header token |