Reputation: 530
I was exploring AWS API Gateway and created several APIs during learning session. Can I delete these API?
Upvotes: 2
Views: 1732
Reputation: 8545
You can use "Delete API" action on Resources tab, Actions menu.
Upvotes: 2
Reputation: 3624
You can use the AWS CLI by passing the API ID delete-rest-api:
aws apigateway delete-rest-api --rest-api-id 1234123412
See https://docs.aws.amazon.com/cli/latest/reference/apigateway/delete-rest-api.html
Upvotes: 3