API Packages
Create API Package
Creates a package of APIs. An API package is a collection of APIs that can be used to group related APIs together.
post/v3/api-packages
Request body
Example request
{
"id": "9f5061ce-78f6-4452-9108-ad7c02821fd5",
"name": "MyAPIPackage",
"slug": "my-api-package-v1",
"labels": {
"env": "test"
},
"attributes": {
"env": [
"production"
],
"domains": [
"web",
"mobile"
]
},
"created_at": "2022-11-04T20:10:06.927Z",
"updated_at": "2022-11-04T20:10:06.927Z"
}Response
API Package
Example response
{
"id": "9f5061ce-78f6-4452-9108-ad7c02821fd5",
"name": "MyAPIPackage",
"slug": "my-api-package-v1",
"labels": {
"env": "test"
},
"attributes": {
"env": [
"production"
],
"domains": [
"web",
"mobile"
]
},
"created_at": "2022-11-04T20:10:06.927Z",
"updated_at": "2022-11-04T20:10:06.927Z"
}