API Key ApiKey

page

integer

Default
0

size

integer

Default
50

Response

Examples Schema

Successful Response

{
  "items": [
    {
      "file_name": "string",
      "url": "string",
      "last_modified": "2023-06-07T17:32:28Z"
    }
  ],
  "total": null,
  "page": null,
  "size": 123
}

Validation Error

{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

items

array[object (ImageResponse)]

required

ImageResponse

object (ImageResponse)

file_name

string

required

url

string

required

last_modified

string

date-time

required

total

integer

required

page

integer

required

size

int

required

detail

array[object (ValidationError)]

ValidationError

object (ValidationError)

loc

array[Any Of]

required

Any Of

string

int

msg

string

required

type

string

required

Upload Image for TPP

post /composer/images

API Key ApiKey

file_name

string

required

image

string

required

Request

{
  "file_name": "string",
  "image": "string"
}

Response

Examples Schema

Successful Response

"string"

Validation Error

{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

Response Upload Image Composer Images Post

string

detail

array[object (ValidationError)]

ValidationError

object (ValidationError)

loc

array[Any Of]

required

Any Of

string

int

msg

string

required

type

string

required

Delete Image for TPP Composer

delete /composer/images

API Key ApiKey

file_name

string

required

Request

{
  "file_name": "string"
}

Response

Examples Schema

Successful Response

null

Validation Error

{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

detail

array[object (ValidationError)]

ValidationError

object (ValidationError)

loc

array[Any Of]

required

Any Of

string

int

msg

string

required

type

string

required

Was this page helpful?