Get Yaml By id

get /yaml/{yaml_id}

yaml_id

string

required

Response

ExamplesSchema

Successful Response

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

Update Tpp Yaml

post /yaml/{yaml_id}

name

string

yaml

string

required

published

boolean

Default
false

prod_id

string

Request

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

Response

ExamplesSchema

Successful Response

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

Delete Yaml for TPP

delete /yaml/{yaml_id}

yaml_id

string

required

Response

ExamplesSchema

Successful Response

Empty response

published

boolean

page

integer

Default
0

size

integer

Default
50

Response

ExamplesSchema

Successful Response

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

name

string

yaml

string

required

published

boolean

Default
false

prod_id

string

Request

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

Response

ExamplesSchema

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?