# Get AWS CloudWatch integration

Returns a single AWS CloudWatch integration by ID.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/aws-cloudwatch-integrations/{aws_cloudwatch_integration_id}"
method = "GET"

[[path_param]]
name = "aws_cloudwatch_integration_id"
description = "The ID of the AWS CloudWatch integration you want to get."
required = true
type = "string"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 200
description = '''Returns a single AWS CloudWatch integration'''
body = '''{
  "data": {
    "id": "37",
    "type": "aws_cloudwatch_integration",
    "attributes": {
      "call": false,
      "sms": false,
      "email": true,
      "team_wait": 180,
      "recovery_period": null,
      "policy_id": null,
      "push": true,
      "name": "Test",
      "paused": false,
      "webhook_url": "https://uptime.betterstack.dev/api/v1/aws-cloudwatch/webhook/[token]",
      "team_name": "Production"
    }
  }
}'''

[/responses]

#### Example cURL 

```shell
[label Example]
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/aws-cloudwatch-integrations/37 \
  --header "Authorization: Bearer $TOKEN"
```

[info]
#### Looking for the details of a specific parameter?
Explore [the list of all AWS CloudWatch integration API parameters](https://betterstack.com/docs/uptime/api/aws-cloudwatch-integrations-response-params/)
[/info]