It allows you:
to get information about Resources.
Columns that can be used as filters:
Organization (name)
Value (of resource)
It is allowed to search with "like" function on this parameter. Ex. Value=%string, in this case the system will list all Resources that contain a Value like %string% (case insensitive).
Name (of resource)
It is allowed to search with "like" function on this parameter. Ex. Name=%string, in this case the system will list all Resources that contain a Name like %string% (case insensitive).
Active
Available
Action can be done:
list
URL: https://api.socratecloud.com/webapi/rest/s_resource/list/{version}?startRow={0}&endRow={100}&accessToken={access_token}
Method: GET
Return: JSON object with next format:
{
"data":[
{
"Organization_ID": 123456,
"OrganizationValue": "Organization Value",
"Organization": "Organization Name",
"Created": "2025-07-10 10:00:00+0000",
"CreatedBy": "User Test",
"Updated": "2025-07-10 10:00:00+0000",
"UpdatedBy": "User Test",
"Resource_ID": 123456,
"Value": "Resource Value",
"Name": "Resource Name",
"Description": "Resource Description",
"Active": true,
"Available": true,
"ResourceType_ID": 123456,
"ResourceTypeValue": "Resurse Type Value",
"ResourceType": "Resurse Type Name",
"User_ID": 123456,
"UserValue": "User Value",
"User": "User Name",
"Warehouse_ID": 123456,
"WarehouseValue": "Warehouse Value",
"Warehouse": "Warehouse Name",
"ResourceGroup": "Other"
}
],
"totalRows":1
}