Assets
Use this endpoint to obtain details on Adaptix's assets.
Get Asset
HTTP Request
GET /assets/ID
Response
Expected Response Code: 200
See JSON code example.
Asset Properties
Name | Type | Description |
---|---|---|
id | int | ID of the asset |
title | string | Title/name of the asset |
description | string/null | Description of the asset |
alias | string | Used to generate the URL for the asset |
language | string | Locale of the asset |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the asset should be published |
publishDown | datetime/null | Date/time the asset should be un published |
dateAdded | datetime | Date/time asset was created |
createdBy | int | ID of the user that created the asset |
createdByUser | string | Name of the user that created the asset |
dateModified | datetime/null | Date/time asset was last modified |
modifiedBy | int | ID of the user that last modified the asset |
modifiedByUser | string | Name of the user that last modified the asset |
downloadCount | int | Total number of downloads |
uniqueDownloadCount | int | Unique number of downloads |
revision | int | Revision version |
category | object/null | Object with the category details |
extension | string | Extension of the asset |
mime | string | Mime type of the asset |
size | int | Filesize of the asset in bytes |
downloadUrl | string | Public download URL for the asset |
List Assets
HTTP Request
GET /assets
Query Parameters
Name | Description |
---|---|
search | String or search command to filter entities by. |
start | Starting row for the entities returned. Defaults to 0. |
limit | Limit number of entities to return. Defaults to the system configuration for pagination (30). |
orderBy | Column to sort by. Can use any column listed in the response. |
orderByDir | Sort direction: asc or desc. |
publishedOnly | Only return currently published entities. |
minimal | Return only array of entities without additional lists in it. |
Response
Expected Response Code: 200
See JSON code example.
Properties
Same as Get Asset.
Create Asset
HTTP Request
POST /assets/new
Post Parameters
Name | Description |
---|---|
title | string |
storageLocation | string |
file | string |
Response
Expected Response Code: 201
Properties
Same as Get Asset.
Edit Asset
PUT creates a asset if the given ID does not exist and clears all the asset information, adds the information from the request. PATCH fails if the asset with the given ID does not exist and updates the asset field values with the values form the request.
HTTP Request
To edit a asset and return a 404 if the asset is not found:
PATCH /assets/ID/edit
To edit a asset and create a new one if the asset is not found:
PUT /assets/ID/edit
Post Parameters
Name | Description |
---|---|
title | string |
storageLocation | string |
file | string |
Response
If PUT
, the expected response code is 200
if the asset was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Asset.
Delete Asset
Delete a asset. In case of local storage location, the local file will be deleted as well.HTTP Request
DELETE /assets/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Asset.