API Products
Update an individual API product
Updates an API product.
patch/v2/api-products/{id}
Request body
Example request
{
"name": "API Product",
"description": "Text describing the API product",
"labels": {
"env": "test"
},
"public_labels": {
"category": "finance"
},
"portal_ids": [
"25a2624c-49fc-4764-99e1-224ed819f200"
]
}Response
API product
Example response
{
"id": "b9e81174-b5bb-4638-a3c3-8afe61a0abf8",
"name": "My Name",
"description": "MyDescription",
"portal_ids": [
"25a2624c-49fc-4764-99e1-224ed819f200"
],
"portals": [
{
"portal_id": "35a2624c-49fc-4764-99e1-224ed819f200",
"portal_name": "Developer Portal"
}
],
"version_count": 10,
"created_at": "2022-11-04T20:10:06.927Z",
"updated_at": "2022-11-04T20:10:06.927Z",
"labels": {
"env": "test"
},
"public_labels": {
"category": "finance"
}
}