# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/PropertyCard/FileInfo
?object_id=11111&record_id=111
To get the file info, you need to make a GET call to the following url :
http://localhost:8888/api/PropertyCard/FileInfo
Result example :
{
"file_name": "string",
"file_size": "string",
"uploaded_date": "2022-11-22T14:24:13.843Z",
"uploaded_by": "string",
"last_modified": "2022-11-22T14:24:13.843Z",
"file_status": "string"
}
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| object_id | query | long | Object Id. |
| record_id | query | long | Record Id. |
| Authorization | header | string | Add Authorization header token |