Repzo API - Asset Type (1.0.0)

Download OpenAPI specification:Download

OpenAPI specification for Repzo Asset Type endpoints.

Find asset types

query Parameters
params
object

Query parameters for filtering asset types

Responses

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "meta": { }
}

Create an asset type

Request Body schema: application/json
name
string
description
string
category
string
fields
Array of objects
disabled
boolean

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "description": "string",
  • "category": "string",
  • "fields": [
    ],
  • "disabled": true
}

Response samples

Content type
application/json
{
  • "data": {
    }
}

Get an asset type by ID

path Parameters
id
required
string

Responses

Response samples

Content type
application/json
{
  • "data": {
    }
}

Update an asset type

path Parameters
id
required
string
Request Body schema: application/json
name
string
description
string
category
string
fields
Array of objects
disabled
boolean

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "description": "string",
  • "category": "string",
  • "fields": [
    ],
  • "disabled": true
}

Response samples

Content type
application/json
{
  • "data": {
    }
}

Remove an asset type

path Parameters
id
required
string

Responses

Response samples

Content type
application/json
{
  • "success": true
}