TAG LINE
TAG LINE
SMALL TITLE

Data Import Cache Category

(API Version v6)


What can you do with DataImportCacheCategory?


Properties

Property Details
identity
READ-ONLY
"identity": 6
Type: Number
This is the unique numeric identifier for the DataImportCacheCategory
ownerId
READ-ONLY
"ownerId": 2
Type: Number
Unique identifier for the associated Owner object.
ownerName
READ-ONLY
"ownerName": "Sample Name"
Type: String
The name of the object associated with the ownerId property.
name
"name": "Hello World"
Type: String
description
"description": "Hello World"
Type: String


End Points

GETDataImport/CacheCategory/
Retrieve all of the DataImportCacheCategory objects.
Retrieve all of the DataImportCacheCategory objects.
GET DataImport/CacheCategory/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 6,
            "ownerName": "Sample Text Data",
            "name": "Sample Text Data",
            "description": "Sample Text Data"
        }
    ]
}
GETDataImport/CacheCategory/Paged
Retrieve all of the DataImportCacheCategory objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints.
Retrieve all of the DataImportCacheCategory objects in a paged fashion.
GET DataImport/CacheCategory/Paged
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 15,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "description": "Sample Text Data"
            }
        ]
    }
}
GETDataImport/CacheCategory/{id}
Retrieve an instance of the DataImportCacheCategory object by its ID.
{id}Unique identifier for the DataImportCacheCategory object.
Retrieve an instance of the DataImportCacheCategory object by its ID.
GET DataImport/CacheCategory/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 12,
        "ownerName": "Sample Text Data",
        "name": "Sample Text Data",
        "description": "Sample Text Data"
    }
}
POSTDataImport/CacheCategory/
Create a new instance of the DataImportCacheCategory object.
Create a new instance of the DataImportCacheCategory object.
POST DataImport/CacheCategory/

{
    "name": "Sample Text Data",
    "description": "Sample Text Data"
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 26,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "description": "Sample Text Data"
            }
        ]
    }
}
PUTDataImport/CacheCategory/{id}
Update an existing instance of the DataImportCacheCategory object.
Update an existing instance of the DataImportCacheCategory object.
PUT DataImport/CacheCategory/{id}

{
    "identity": 1,
    "name": "Sample Text Data",
    "description": "Sample Text Data"
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 3,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "description": "Sample Text Data"
            }
        ]
    }
}