Ramjan Ali
Ramjan Ali

Reputation: 530

Can we delete a API in AWS API Gateway? If yes then how?

I was exploring AWS API Gateway and created several APIs during learning session. Can I delete these API?

Upvotes: 2

Views: 1732

Answers (2)

Murat Çorlu
Murat Çorlu

Reputation: 8545

You can use "Delete API" action on Resources tab, Actions menu.

enter image description here

Upvotes: 2

MisterSmith
MisterSmith

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

Related Questions