get

Get Yaml By id

yaml_idstring

required

Responses

Response examples

Successful Response

{
  "name": "string",
  "yaml": "string",
  "published": true,
  "prod_id": "string",
  "id": "string",
  "tpp_id": "string",
  "created": "2023-06-07T17:32:28Z"
}
post

Update Tpp Yaml

namestring
yamlstring

required

publishedboolean
Default
false
prod_idstring

Responses

Request examples

{
  "name": "string",
  "yaml": "string",
  "published": true,
  "prod_id": "string"
}

Response examples

Successful Response

{
  "name": "string",
  "yaml": "string",
  "published": true,
  "prod_id": "string",
  "id": "string",
  "tpp_id": "string",
  "created": "2023-06-07T17:32:28Z"
}
delete

Delete Yaml for TPP

yaml_idstring

required

Responses

Response examples

Successful Response

Empty response

get

Get all Yaml files for given TPP

publishedboolean
pageint
Default
0
sizeint
Default
50

Responses

Response examples

Successful Response

{
  "items": [
    {
      "name": "string",
      "yaml": "string",
      "published": true,
      "prod_id": "string",
      "id": "string",
      "tpp_id": "string",
      "created": "2023-06-07T17:32:28Z"
    }
  ],
  "total": 123,
  "page": 123,
  "size": 123
}
post

Create Yaml for given TPP

namestring
yamlstring

required

publishedboolean
Default
false
prod_idstring

Responses

Request examples

{
  "name": "string",
  "yaml": "string",
  "published": true,
  "prod_id": "string"
}

Response examples

Successful Response

{
  "name": "string",
  "yaml": "string",
  "published": true,
  "prod_id": "string",
  "id": "string",
  "tpp_id": "string",
  "created": "2023-06-07T17:32:28Z"
}

Was this page helpful?