

# Amazon Chime SDK Meetings
<a name="API_Operations_Amazon_Chime_SDK_Meetings"></a>

The following actions are supported by Amazon Chime SDK Meetings:
+  [BatchCreateAttendee](API_meeting-chime_BatchCreateAttendee.md) 
+  [BatchUpdateAttendeeCapabilitiesExcept](API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept.md) 
+  [CreateAttendee](API_meeting-chime_CreateAttendee.md) 
+  [CreateMeeting](API_meeting-chime_CreateMeeting.md) 
+  [CreateMeetingWithAttendees](API_meeting-chime_CreateMeetingWithAttendees.md) 
+  [DeleteAttendee](API_meeting-chime_DeleteAttendee.md) 
+  [DeleteMeeting](API_meeting-chime_DeleteMeeting.md) 
+  [GetAttendee](API_meeting-chime_GetAttendee.md) 
+  [GetMeeting](API_meeting-chime_GetMeeting.md) 
+  [ListAttendees](API_meeting-chime_ListAttendees.md) 
+  [ListTagsForResource](API_meeting-chime_ListTagsForResource.md) 
+  [StartMeetingTranscription](API_meeting-chime_StartMeetingTranscription.md) 
+  [StopMeetingTranscription](API_meeting-chime_StopMeetingTranscription.md) 
+  [TagResource](API_meeting-chime_TagResource.md) 
+  [UntagResource](API_meeting-chime_UntagResource.md) 
+  [UpdateAttendeeCapabilities](API_meeting-chime_UpdateAttendeeCapabilities.md) 

# BatchCreateAttendee
<a name="API_meeting-chime_BatchCreateAttendee"></a>

Creates up to 100 attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK](https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html) in the *Amazon Chime Developer Guide*.

## Request Syntax
<a name="API_meeting-chime_BatchCreateAttendee_RequestSyntax"></a>

```
POST /meetings/MeetingId/attendees?operation=batch-create HTTP/1.1
Content-type: application/json

{
   "Attendees": [ 
      { 
         "Capabilities": { 
            "Audio": "string",
            "Content": "string",
            "Video": "string"
         },
         "ExternalUserId": "string"
      }
   ]
}
```

## URI Request Parameters
<a name="API_meeting-chime_BatchCreateAttendee_RequestParameters"></a>

The request uses the following URI parameters.

 ** [MeetingId](#API_meeting-chime_BatchCreateAttendee_RequestSyntax) **   <a name="chimesdk-meeting-chime_BatchCreateAttendee-request-uri-MeetingId"></a>
The Amazon Chime SDK ID of the meeting to which you're adding attendees.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

## Request Body
<a name="API_meeting-chime_BatchCreateAttendee_RequestBody"></a>

The request accepts the following data in JSON format.

 ** [Attendees](#API_meeting-chime_BatchCreateAttendee_RequestSyntax) **   <a name="chimesdk-meeting-chime_BatchCreateAttendee-request-Attendees"></a>
The attendee information, including attendees' IDs and join tokens.  
Type: Array of [CreateAttendeeRequestItem](API_meeting-chime_CreateAttendeeRequestItem.md) objects  
Array Members: Minimum number of 1 item. Maximum number of 100 items.  
Required: Yes

## Response Syntax
<a name="API_meeting-chime_BatchCreateAttendee_ResponseSyntax"></a>

```
HTTP/1.1 200
Content-type: application/json

{
   "Attendees": [ 
      { 
         "AttendeeId": "string",
         "Capabilities": { 
            "Audio": "string",
            "Content": "string",
            "Video": "string"
         },
         "ExternalUserId": "string",
         "JoinToken": "string"
      }
   ],
   "Errors": [ 
      { 
         "ErrorCode": "string",
         "ErrorMessage": "string",
         "ExternalUserId": "string"
      }
   ]
}
```

## Response Elements
<a name="API_meeting-chime_BatchCreateAttendee_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

 ** [Attendees](#API_meeting-chime_BatchCreateAttendee_ResponseSyntax) **   <a name="chimesdk-meeting-chime_BatchCreateAttendee-response-Attendees"></a>
The attendee information, including attendees' IDs and join tokens.  
Type: Array of [Attendee](API_meeting-chime_Attendee.md) objects

 ** [Errors](#API_meeting-chime_BatchCreateAttendee_ResponseSyntax) **   <a name="chimesdk-meeting-chime_BatchCreateAttendee-response-Errors"></a>
If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.  
Type: Array of [CreateAttendeeError](API_meeting-chime_CreateAttendeeError.md) objects

## Errors
<a name="API_meeting-chime_BatchCreateAttendee_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** LimitExceededException **   
The request exceeds the resource limit.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** NotFoundException **   
One or more of the resources in the request does not exist in the system.    
 ** RequestId **   
The request ID associated with the call responsible for the exception.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

 ** UnprocessableEntityException **   
The request was well-formed but was unable to be followed due to semantic errors.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 422

## See Also
<a name="API_meeting-chime_BatchCreateAttendee_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/BatchCreateAttendee) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/BatchCreateAttendee) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/BatchCreateAttendee) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/BatchCreateAttendee) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/BatchCreateAttendee) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/BatchCreateAttendee) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/BatchCreateAttendee) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/BatchCreateAttendee) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/BatchCreateAttendee) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/BatchCreateAttendee) 

# BatchUpdateAttendeeCapabilitiesExcept
<a name="API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept"></a>

Updates `AttendeeCapabilities` except the capabilities listed in an `ExcludedAttendeeIds` table.

**Note**  
You use the capabilities with a set of values that control what the capabilities can do, such as `SendReceive` data. For more information about those values, see [AttendeeCapabilities](API_meeting-chime_AttendeeCapabilities.md).

When using capabilities, be aware of these corner cases:
+ If you specify `MeetingFeatures:Video:MaxResolution:None` when you create a meeting, all API requests that include `SendReceive`, `Send`, or `Receive` for `AttendeeCapabilities:Video` will be rejected with `ValidationError 400`.
+ If you specify `MeetingFeatures:Content:MaxResolution:None` when you create a meeting, all API requests that include `SendReceive`, `Send`, or `Receive` for `AttendeeCapabilities:Content` will be rejected with `ValidationError 400`.
+ You can't set `content` capabilities to `SendReceive` or `Receive` unless you also set `video` capabilities to `SendReceive` or `Receive`. If you don't set the `video` capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your `video` capability to receive and you set your `content` capability to not receive.
+ If meeting features is defined as `Video:MaxResolution:None` but `Content:MaxResolution` is defined as something other than `None` and attendee capabilities are not defined in the API request, then the default attendee video capability is set to `Receive` and attendee content capability is set to `SendReceive`. This is because content `SendReceive` requires video to be at least `Receive`.
+ When you change an `audio` capability from `None` or `Receive` to `Send` or `SendReceive` , and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.
+ When you change a `video` or `content` capability from `None` or `Receive` to `Send` or `SendReceive` , and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.

## Request Syntax
<a name="API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept_RequestSyntax"></a>

```
PUT /meetings/MeetingId/attendees/capabilities?operation=batch-update-except HTTP/1.1
Content-type: application/json

{
   "Capabilities": { 
      "Audio": "string",
      "Content": "string",
      "Video": "string"
   },
   "ExcludedAttendeeIds": [ 
      { 
         "AttendeeId": "string"
      }
   ]
}
```

## URI Request Parameters
<a name="API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept_RequestParameters"></a>

The request uses the following URI parameters.

 ** [MeetingId](#API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept_RequestSyntax) **   <a name="chimesdk-meeting-chime_BatchUpdateAttendeeCapabilitiesExcept-request-uri-MeetingId"></a>
The ID of the meeting associated with the update request.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

## Request Body
<a name="API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept_RequestBody"></a>

The request accepts the following data in JSON format.

 ** [Capabilities](#API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept_RequestSyntax) **   <a name="chimesdk-meeting-chime_BatchUpdateAttendeeCapabilitiesExcept-request-Capabilities"></a>
The capabilities (`audio`, `video`, or `content`) that you want to update.  
Type: [AttendeeCapabilities](API_meeting-chime_AttendeeCapabilities.md) object  
Required: Yes

 ** [ExcludedAttendeeIds](#API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept_RequestSyntax) **   <a name="chimesdk-meeting-chime_BatchUpdateAttendeeCapabilitiesExcept-request-ExcludedAttendeeIds"></a>
The `AttendeeIDs` that you want to exclude from one or more capabilities.  
Type: Array of [AttendeeIdItem](API_meeting-chime_AttendeeIdItem.md) objects  
Array Members: Minimum number of 1 item. Maximum number of 250 items.  
Required: Yes

## Response Syntax
<a name="API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept_ResponseSyntax"></a>

```
HTTP/1.1 200
```

## Response Elements
<a name="API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response with an empty HTTP body.

## Errors
<a name="API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ConflictException **   
Multiple instances of the same request have been made simultaneously.    
 ** RequestId **   
The ID of the request involved in the conflict.
HTTP Status Code: 409

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** NotFoundException **   
One or more of the resources in the request does not exist in the system.    
 ** RequestId **   
The request ID associated with the call responsible for the exception.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_BatchUpdateAttendeeCapabilitiesExcept_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept) 

# CreateAttendee
<a name="API_meeting-chime_CreateAttendee"></a>

 Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK](https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html) in the *Amazon Chime Developer Guide*. 

## Request Syntax
<a name="API_meeting-chime_CreateAttendee_RequestSyntax"></a>

```
POST /meetings/MeetingId/attendees HTTP/1.1
Content-type: application/json

{
   "Capabilities": { 
      "Audio": "string",
      "Content": "string",
      "Video": "string"
   },
   "ExternalUserId": "string"
}
```

## URI Request Parameters
<a name="API_meeting-chime_CreateAttendee_RequestParameters"></a>

The request uses the following URI parameters.

 ** [MeetingId](#API_meeting-chime_CreateAttendee_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateAttendee-request-uri-MeetingId"></a>
The unique ID of the meeting.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

## Request Body
<a name="API_meeting-chime_CreateAttendee_RequestBody"></a>

The request accepts the following data in JSON format.

 ** [Capabilities](#API_meeting-chime_CreateAttendee_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateAttendee-request-Capabilities"></a>
The capabilities (`audio`, `video`, or `content`) that you want to grant an attendee. If you don't specify capabilities, all users have send and receive capabilities on all media channels by default.  
You use the capabilities with a set of values that control what the capabilities can do, such as `SendReceive` data. For more information about those values, see [AttendeeCapabilities](API_meeting-chime_AttendeeCapabilities.md).
When using capabilities, be aware of these corner cases:  
+ If you specify `MeetingFeatures:Video:MaxResolution:None` when you create a meeting, all API requests that include `SendReceive`, `Send`, or `Receive` for `AttendeeCapabilities:Video` will be rejected with `ValidationError 400`.
+ If you specify `MeetingFeatures:Content:MaxResolution:None` when you create a meeting, all API requests that include `SendReceive`, `Send`, or `Receive` for `AttendeeCapabilities:Content` will be rejected with `ValidationError 400`.
+ You can't set `content` capabilities to `SendReceive` or `Receive` unless you also set `video` capabilities to `SendReceive` or `Receive`. If you don't set the `video` capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your `video` capability to receive and you set your `content` capability to not receive.
+ If meeting features is defined as `Video:MaxResolution:None` but `Content:MaxResolution` is defined as something other than `None` and attendee capabilities are not defined in the API request, then the default attendee video capability is set to `Receive` and attendee content capability is set to `SendReceive`. This is because content `SendReceive` requires video to be at least `Receive`.
+ When you change an `audio` capability from `None` or `Receive` to `Send` or `SendReceive` , and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.
+ When you change a `video` or `content` capability from `None` or `Receive` to `Send` or `SendReceive` , and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.
Type: [AttendeeCapabilities](API_meeting-chime_AttendeeCapabilities.md) object  
Required: No

 ** [ExternalUserId](#API_meeting-chime_CreateAttendee_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateAttendee-request-ExternalUserId"></a>
The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.  
Pattern: `[-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*`   
Values that begin with `aws:` are reserved. You can't configure a value that uses this prefix.  
Type: String  
Length Constraints: Minimum length of 2. Maximum length of 64.  
Required: Yes

## Response Syntax
<a name="API_meeting-chime_CreateAttendee_ResponseSyntax"></a>

```
HTTP/1.1 200
Content-type: application/json

{
   "Attendee": { 
      "AttendeeId": "string",
      "Capabilities": { 
         "Audio": "string",
         "Content": "string",
         "Video": "string"
      },
      "ExternalUserId": "string",
      "JoinToken": "string"
   }
}
```

## Response Elements
<a name="API_meeting-chime_CreateAttendee_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

 ** [Attendee](#API_meeting-chime_CreateAttendee_ResponseSyntax) **   <a name="chimesdk-meeting-chime_CreateAttendee-response-Attendee"></a>
The attendee information, including attendee ID and join token.  
Type: [Attendee](API_meeting-chime_Attendee.md) object

## Errors
<a name="API_meeting-chime_CreateAttendee_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** LimitExceededException **   
The request exceeds the resource limit.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** NotFoundException **   
One or more of the resources in the request does not exist in the system.    
 ** RequestId **   
The request ID associated with the call responsible for the exception.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

 ** UnprocessableEntityException **   
The request was well-formed but was unable to be followed due to semantic errors.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 422

## See Also
<a name="API_meeting-chime_CreateAttendee_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/CreateAttendee) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/CreateAttendee) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/CreateAttendee) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/CreateAttendee) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/CreateAttendee) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/CreateAttendee) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/CreateAttendee) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/CreateAttendee) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/CreateAttendee) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/CreateAttendee) 

# CreateMeeting
<a name="API_meeting-chime_CreateMeeting"></a>

Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see [Available Regions](https://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions) and [Using meeting Regions](https://docs.aws.amazon.com/chime-sdk/latest/dg/chime-sdk-meetings-regions.html), both in the *Amazon Chime SDK Developer Guide*. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK](https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html) in the *Amazon Chime SDK Developer Guide*. 

**Note**  
If you use this API in conjuction with the [AudioFeatures](API_meeting-chime_AudioFeatures.md) and [VideoFeatures](API_meeting-chime_VideoFeatures.md) APIs, and you don't specify the `MeetingFeatures.Content.MaxResolution` or `MeetingFeatures.Video.MaxResolution` parameters, the following defaults are used:  
Content.MaxResolution: FHD
Video.MaxResolution: HD

## Request Syntax
<a name="API_meeting-chime_CreateMeeting_RequestSyntax"></a>

```
POST /meetings HTTP/1.1
Content-type: application/json

{
   "ClientRequestToken": "string",
   "ExternalMeetingId": "string",
   "MediaPlacementNetworkType": "string",
   "MediaRegion": "string",
   "MeetingFeatures": { 
      "Attendee": { 
         "MaxCount": number
      },
      "Audio": { 
         "EchoReduction": "string"
      },
      "Content": { 
         "MaxResolution": "string"
      },
      "Video": { 
         "MaxResolution": "string"
      }
   },
   "MeetingHostId": "string",
   "NotificationsConfiguration": { 
      "LambdaFunctionArn": "string",
      "SnsTopicArn": "string",
      "SqsQueueArn": "string"
   },
   "PrimaryMeetingId": "string",
   "Tags": [ 
      { 
         "Key": "string",
         "Value": "string"
      }
   ],
   "TenantIds": [ "string" ]
}
```

## URI Request Parameters
<a name="API_meeting-chime_CreateMeeting_RequestParameters"></a>

The request does not use any URI parameters.

## Request Body
<a name="API_meeting-chime_CreateMeeting_RequestBody"></a>

The request accepts the following data in JSON format.

 ** [ClientRequestToken](#API_meeting-chime_CreateMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeeting-request-ClientRequestToken"></a>
The unique identifier for the client request. Use a different token for different meetings.  
Type: String  
Length Constraints: Minimum length of 2. Maximum length of 64.  
Pattern: `[-_a-zA-Z0-9]*`   
Required: Yes

 ** [ExternalMeetingId](#API_meeting-chime_CreateMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeeting-request-ExternalMeetingId"></a>
The external meeting ID.  
Pattern: `[-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*`   
Values that begin with `aws:` are reserved. You can't configure a value that uses this prefix. Case insensitive.  
Type: String  
Length Constraints: Minimum length of 2. Maximum length of 64.  
Required: Yes

 ** [MediaPlacementNetworkType](#API_meeting-chime_CreateMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeeting-request-MediaPlacementNetworkType"></a>
The type of network for the media placement. Either IPv4 only or dual-stack (IPv4 and IPv6).  
Type: String  
Valid Values: `Ipv4Only | DualStack`   
Required: No

 ** [MediaRegion](#API_meeting-chime_CreateMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeeting-request-MediaRegion"></a>
The Region in which to create the meeting.  
 Available values: `af-south-1`, `ap-northeast-1`, `ap-northeast-2`, `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`, `eu-central-1`, `eu-north-1`, `eu-south-1`, `eu-west-1`, `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`, `us-west-2`.   
Available values in AWS GovCloud (US) Regions: `us-gov-east-1`, `us-gov-west-1`.  
Type: String  
Length Constraints: Minimum length of 2. Maximum length of 64.  
Required: Yes

 ** [MeetingFeatures](#API_meeting-chime_CreateMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeeting-request-MeetingFeatures"></a>
Lists the audio and video features enabled for a meeting, such as echo reduction.  
Type: [MeetingFeaturesConfiguration](API_meeting-chime_MeetingFeaturesConfiguration.md) object  
Required: No

 ** [MeetingHostId](#API_meeting-chime_CreateMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeeting-request-MeetingHostId"></a>
Reserved.  
Type: String  
Length Constraints: Minimum length of 2. Maximum length of 64.  
Required: No

 ** [NotificationsConfiguration](#API_meeting-chime_CreateMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeeting-request-NotificationsConfiguration"></a>
The configuration for resource targets to receive notifications when meeting and attendee events occur.  
Type: [NotificationsConfiguration](API_meeting-chime_NotificationsConfiguration.md) object  
Required: No

 ** [PrimaryMeetingId](#API_meeting-chime_CreateMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeeting-request-PrimaryMeetingId"></a>
When specified, replicates the media from the primary meeting to the new meeting.  
Type: String  
Length Constraints: Minimum length of 2. Maximum length of 64.  
Required: No

 ** [Tags](#API_meeting-chime_CreateMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeeting-request-Tags"></a>
Applies one or more tags to an Amazon Chime SDK meeting. Note the following:  
+ Not all resources have tags. For a list of services with resources that support tagging using this operation, see [Services that support the Resource Groups Tagging API](https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/supported-services.html). If the resource doesn't yet support this operation, the resource's service might support tagging using its own API operations. For more information, refer to the documentation for that service.
+ Each resource can have up to 50 tags. For other limits, see [Tag Naming and Usage Conventions](https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html#tag-conventions) in the *AWS General Reference*.
+ You can only tag resources that are located in the specified AWS Region for the AWS account.
+ To add tags to a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for adding tags. For more information, see the documentation for each service.
Do not store personally identifiable information (PII) or other confidential or sensitive information in tags. We use tags to provide you with billing and administration services. Tags are not intended to be used for private or sensitive data.
 **Minimum permissions**   
In addition to the `tag:TagResources` permission required by this operation, you must also have the tagging permission defined by the service that created the resource. For example, to tag a `ChimeSDKMeetings` instance using the `TagResources` operation, you must have both of the following permissions:  
 `tag:TagResources`   
 `ChimeSDKMeetings:CreateTags`   
Some services might have specific requirements for tagging some resources. For example, to tag an Amazon S3 bucket, you must also have the `s3:GetBucketTagging` permission. If the expected minimum permissions don't work, check the documentation for that service's tagging APIs for more information.
Type: Array of [Tag](API_meeting-chime_Tag.md) objects  
Array Members: Minimum number of 0 items. Maximum number of 50 items.  
Required: No

 ** [TenantIds](#API_meeting-chime_CreateMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeeting-request-TenantIds"></a>
A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.  
Type: Array of strings  
Array Members: Minimum number of 1 item. Maximum number of 5 items.  
Length Constraints: Minimum length of 2. Maximum length of 256.  
Pattern: `^(?!.*?(.)\1{3})[-_!@#$a-zA-Z0-9]*$`   
Required: No

## Response Syntax
<a name="API_meeting-chime_CreateMeeting_ResponseSyntax"></a>

```
HTTP/1.1 200
Content-type: application/json

{
   "Meeting": { 
      "ExternalMeetingId": "string",
      "MediaPlacement": { 
         "AudioFallbackUrl": "string",
         "AudioHostUrl": "string",
         "EventIngestionUrl": "string",
         "ScreenDataUrl": "string",
         "ScreenSharingUrl": "string",
         "ScreenViewingUrl": "string",
         "SignalingUrl": "string",
         "TurnControlUrl": "string"
      },
      "MediaRegion": "string",
      "MeetingArn": "string",
      "MeetingFeatures": { 
         "Attendee": { 
            "MaxCount": number
         },
         "Audio": { 
            "EchoReduction": "string"
         },
         "Content": { 
            "MaxResolution": "string"
         },
         "Video": { 
            "MaxResolution": "string"
         }
      },
      "MeetingHostId": "string",
      "MeetingId": "string",
      "PrimaryMeetingId": "string",
      "TenantIds": [ "string" ]
   }
}
```

## Response Elements
<a name="API_meeting-chime_CreateMeeting_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

 ** [Meeting](#API_meeting-chime_CreateMeeting_ResponseSyntax) **   <a name="chimesdk-meeting-chime_CreateMeeting-response-Meeting"></a>
The meeting information, including the meeting ID and `MediaPlacement`.  
Type: [Meeting](API_meeting-chime_Meeting.md) object

## Errors
<a name="API_meeting-chime_CreateMeeting_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ConflictException **   
Multiple instances of the same request have been made simultaneously.    
 ** RequestId **   
The ID of the request involved in the conflict.
HTTP Status Code: 409

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** LimitExceededException **   
The request exceeds the resource limit.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_CreateMeeting_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/CreateMeeting) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/CreateMeeting) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/CreateMeeting) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/CreateMeeting) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/CreateMeeting) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/CreateMeeting) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/CreateMeeting) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/CreateMeeting) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/CreateMeeting) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/CreateMeeting) 

# CreateMeetingWithAttendees
<a name="API_meeting-chime_CreateMeetingWithAttendees"></a>

 Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see [Available Regions](https://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions) and [Using meeting Regions](https://docs.aws.amazon.com/chime-sdk/latest/dg/chime-sdk-meetings-regions.html), both in the *Amazon Chime SDK Developer Guide*. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK](https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html) in the *Amazon Chime SDK Developer Guide*. 

**Note**  
If you use this API in conjuction with the [AudioFeatures](API_meeting-chime_AudioFeatures.md) and [VideoFeatures](API_meeting-chime_VideoFeatures.md) APIs, and you don't specify the `MeetingFeatures.Content.MaxResolution` or `MeetingFeatures.Video.MaxResolution` parameters, the following defaults are used:  
Content.MaxResolution: FHD
Video.MaxResolution: HD

## Request Syntax
<a name="API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax"></a>

```
POST /meetings?operation=create-attendees HTTP/1.1
Content-type: application/json

{
   "Attendees": [ 
      { 
         "Capabilities": { 
            "Audio": "string",
            "Content": "string",
            "Video": "string"
         },
         "ExternalUserId": "string"
      }
   ],
   "ClientRequestToken": "string",
   "ExternalMeetingId": "string",
   "MediaPlacementNetworkType": "string",
   "MediaRegion": "string",
   "MeetingFeatures": { 
      "Attendee": { 
         "MaxCount": number
      },
      "Audio": { 
         "EchoReduction": "string"
      },
      "Content": { 
         "MaxResolution": "string"
      },
      "Video": { 
         "MaxResolution": "string"
      }
   },
   "MeetingHostId": "string",
   "NotificationsConfiguration": { 
      "LambdaFunctionArn": "string",
      "SnsTopicArn": "string",
      "SqsQueueArn": "string"
   },
   "PrimaryMeetingId": "string",
   "Tags": [ 
      { 
         "Key": "string",
         "Value": "string"
      }
   ],
   "TenantIds": [ "string" ]
}
```

## URI Request Parameters
<a name="API_meeting-chime_CreateMeetingWithAttendees_RequestParameters"></a>

The request does not use any URI parameters.

## Request Body
<a name="API_meeting-chime_CreateMeetingWithAttendees_RequestBody"></a>

The request accepts the following data in JSON format.

 ** [Attendees](#API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-request-Attendees"></a>
The attendee information, including attendees' IDs and join tokens.  
Type: Array of [CreateAttendeeRequestItem](API_meeting-chime_CreateAttendeeRequestItem.md) objects  
Array Members: Minimum number of 1 item. Maximum number of 20 items.  
Required: Yes

 ** [ClientRequestToken](#API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-request-ClientRequestToken"></a>
The unique identifier for the client request. Use a different token for different meetings.  
Type: String  
Length Constraints: Minimum length of 2. Maximum length of 64.  
Pattern: `[-_a-zA-Z0-9]*`   
Required: Yes

 ** [ExternalMeetingId](#API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-request-ExternalMeetingId"></a>
The external meeting ID.  
Pattern: `[-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*`   
Values that begin with `aws:` are reserved. You can't configure a value that uses this prefix. Case insensitive.  
Type: String  
Length Constraints: Minimum length of 2. Maximum length of 64.  
Required: Yes

 ** [MediaPlacementNetworkType](#API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-request-MediaPlacementNetworkType"></a>
The type of network for the media placement. Either IPv4 only or dual-stack (IPv4 and IPv6).  
Type: String  
Valid Values: `Ipv4Only | DualStack`   
Required: No

 ** [MediaRegion](#API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-request-MediaRegion"></a>
The Region in which to create the meeting.  
 Available values: `af-south-1`, `ap-northeast-1`, `ap-northeast-2`, `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`, `eu-central-1`, `eu-north-1`, `eu-south-1`, `eu-west-1`, `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`, `us-west-2`.   
Available values in AWS GovCloud (US) Regions: `us-gov-east-1`, `us-gov-west-1`.  
Type: String  
Length Constraints: Minimum length of 2. Maximum length of 64.  
Required: Yes

 ** [MeetingFeatures](#API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-request-MeetingFeatures"></a>
Lists the audio and video features enabled for a meeting, such as echo reduction.  
Type: [MeetingFeaturesConfiguration](API_meeting-chime_MeetingFeaturesConfiguration.md) object  
Required: No

 ** [MeetingHostId](#API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-request-MeetingHostId"></a>
Reserved.  
Type: String  
Length Constraints: Minimum length of 2. Maximum length of 64.  
Required: No

 ** [NotificationsConfiguration](#API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-request-NotificationsConfiguration"></a>
The configuration for resource targets to receive notifications when meeting and attendee events occur.  
Type: [NotificationsConfiguration](API_meeting-chime_NotificationsConfiguration.md) object  
Required: No

 ** [PrimaryMeetingId](#API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-request-PrimaryMeetingId"></a>
When specified, replicates the media from the primary meeting to the new meeting.  
Type: String  
Length Constraints: Minimum length of 2. Maximum length of 64.  
Required: No

 ** [Tags](#API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-request-Tags"></a>
The tags in the request.  
Type: Array of [Tag](API_meeting-chime_Tag.md) objects  
Array Members: Minimum number of 0 items. Maximum number of 50 items.  
Required: No

 ** [TenantIds](#API_meeting-chime_CreateMeetingWithAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-request-TenantIds"></a>
A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.  
Type: Array of strings  
Array Members: Minimum number of 1 item. Maximum number of 5 items.  
Length Constraints: Minimum length of 2. Maximum length of 256.  
Pattern: `^(?!.*?(.)\1{3})[-_!@#$a-zA-Z0-9]*$`   
Required: No

## Response Syntax
<a name="API_meeting-chime_CreateMeetingWithAttendees_ResponseSyntax"></a>

```
HTTP/1.1 200
Content-type: application/json

{
   "Attendees": [ 
      { 
         "AttendeeId": "string",
         "Capabilities": { 
            "Audio": "string",
            "Content": "string",
            "Video": "string"
         },
         "ExternalUserId": "string",
         "JoinToken": "string"
      }
   ],
   "Errors": [ 
      { 
         "ErrorCode": "string",
         "ErrorMessage": "string",
         "ExternalUserId": "string"
      }
   ],
   "Meeting": { 
      "ExternalMeetingId": "string",
      "MediaPlacement": { 
         "AudioFallbackUrl": "string",
         "AudioHostUrl": "string",
         "EventIngestionUrl": "string",
         "ScreenDataUrl": "string",
         "ScreenSharingUrl": "string",
         "ScreenViewingUrl": "string",
         "SignalingUrl": "string",
         "TurnControlUrl": "string"
      },
      "MediaRegion": "string",
      "MeetingArn": "string",
      "MeetingFeatures": { 
         "Attendee": { 
            "MaxCount": number
         },
         "Audio": { 
            "EchoReduction": "string"
         },
         "Content": { 
            "MaxResolution": "string"
         },
         "Video": { 
            "MaxResolution": "string"
         }
      },
      "MeetingHostId": "string",
      "MeetingId": "string",
      "PrimaryMeetingId": "string",
      "TenantIds": [ "string" ]
   }
}
```

## Response Elements
<a name="API_meeting-chime_CreateMeetingWithAttendees_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

 ** [Attendees](#API_meeting-chime_CreateMeetingWithAttendees_ResponseSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-response-Attendees"></a>
The attendee information, including attendees' IDs and join tokens.  
Type: Array of [Attendee](API_meeting-chime_Attendee.md) objects

 ** [Errors](#API_meeting-chime_CreateMeetingWithAttendees_ResponseSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-response-Errors"></a>
If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.  
Type: Array of [CreateAttendeeError](API_meeting-chime_CreateAttendeeError.md) objects

 ** [Meeting](#API_meeting-chime_CreateMeetingWithAttendees_ResponseSyntax) **   <a name="chimesdk-meeting-chime_CreateMeetingWithAttendees-response-Meeting"></a>
The meeting information, including the meeting ID and `MediaPlacement`.  
Type: [Meeting](API_meeting-chime_Meeting.md) object

## Errors
<a name="API_meeting-chime_CreateMeetingWithAttendees_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ConflictException **   
Multiple instances of the same request have been made simultaneously.    
 ** RequestId **   
The ID of the request involved in the conflict.
HTTP Status Code: 409

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** LimitExceededException **   
The request exceeds the resource limit.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_CreateMeetingWithAttendees_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendees) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendees) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendees) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendees) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendees) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendees) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendees) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendees) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendees) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendees) 

# DeleteAttendee
<a name="API_meeting-chime_DeleteAttendee"></a>

Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their `JoinToken`. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK](https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html) in the *Amazon Chime Developer Guide*.

## Request Syntax
<a name="API_meeting-chime_DeleteAttendee_RequestSyntax"></a>

```
DELETE /meetings/MeetingId/attendees/AttendeeId HTTP/1.1
```

## URI Request Parameters
<a name="API_meeting-chime_DeleteAttendee_RequestParameters"></a>

The request uses the following URI parameters.

 ** [AttendeeId](#API_meeting-chime_DeleteAttendee_RequestSyntax) **   <a name="chimesdk-meeting-chime_DeleteAttendee-request-uri-AttendeeId"></a>
The Amazon Chime SDK attendee ID.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

 ** [MeetingId](#API_meeting-chime_DeleteAttendee_RequestSyntax) **   <a name="chimesdk-meeting-chime_DeleteAttendee-request-uri-MeetingId"></a>
The Amazon Chime SDK meeting ID.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

## Request Body
<a name="API_meeting-chime_DeleteAttendee_RequestBody"></a>

The request does not have a request body.

## Response Syntax
<a name="API_meeting-chime_DeleteAttendee_ResponseSyntax"></a>

```
HTTP/1.1 204
```

## Response Elements
<a name="API_meeting-chime_DeleteAttendee_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 204 response with an empty HTTP body.

## Errors
<a name="API_meeting-chime_DeleteAttendee_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** NotFoundException **   
One or more of the resources in the request does not exist in the system.    
 ** RequestId **   
The request ID associated with the call responsible for the exception.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_DeleteAttendee_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/DeleteAttendee) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/DeleteAttendee) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/DeleteAttendee) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/DeleteAttendee) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/DeleteAttendee) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/DeleteAttendee) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/DeleteAttendee) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/DeleteAttendee) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/DeleteAttendee) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/DeleteAttendee) 

# DeleteMeeting
<a name="API_meeting-chime_DeleteMeeting"></a>

Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from joining the meeting. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK](https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html) in the *Amazon Chime Developer Guide*.

## Request Syntax
<a name="API_meeting-chime_DeleteMeeting_RequestSyntax"></a>

```
DELETE /meetings/MeetingId HTTP/1.1
```

## URI Request Parameters
<a name="API_meeting-chime_DeleteMeeting_RequestParameters"></a>

The request uses the following URI parameters.

 ** [MeetingId](#API_meeting-chime_DeleteMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_DeleteMeeting-request-uri-MeetingId"></a>
The Amazon Chime SDK meeting ID.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

## Request Body
<a name="API_meeting-chime_DeleteMeeting_RequestBody"></a>

The request does not have a request body.

## Response Syntax
<a name="API_meeting-chime_DeleteMeeting_ResponseSyntax"></a>

```
HTTP/1.1 204
```

## Response Elements
<a name="API_meeting-chime_DeleteMeeting_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 204 response with an empty HTTP body.

## Errors
<a name="API_meeting-chime_DeleteMeeting_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** NotFoundException **   
One or more of the resources in the request does not exist in the system.    
 ** RequestId **   
The request ID associated with the call responsible for the exception.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_DeleteMeeting_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/DeleteMeeting) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/DeleteMeeting) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/DeleteMeeting) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/DeleteMeeting) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/DeleteMeeting) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/DeleteMeeting) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/DeleteMeeting) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/DeleteMeeting) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/DeleteMeeting) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/DeleteMeeting) 

# GetAttendee
<a name="API_meeting-chime_GetAttendee"></a>

 Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK](https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html) in the *Amazon Chime Developer Guide*. 

## Request Syntax
<a name="API_meeting-chime_GetAttendee_RequestSyntax"></a>

```
GET /meetings/MeetingId/attendees/AttendeeId HTTP/1.1
```

## URI Request Parameters
<a name="API_meeting-chime_GetAttendee_RequestParameters"></a>

The request uses the following URI parameters.

 ** [AttendeeId](#API_meeting-chime_GetAttendee_RequestSyntax) **   <a name="chimesdk-meeting-chime_GetAttendee-request-uri-AttendeeId"></a>
The Amazon Chime SDK attendee ID.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

 ** [MeetingId](#API_meeting-chime_GetAttendee_RequestSyntax) **   <a name="chimesdk-meeting-chime_GetAttendee-request-uri-MeetingId"></a>
The Amazon Chime SDK meeting ID.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

## Request Body
<a name="API_meeting-chime_GetAttendee_RequestBody"></a>

The request does not have a request body.

## Response Syntax
<a name="API_meeting-chime_GetAttendee_ResponseSyntax"></a>

```
HTTP/1.1 200
Content-type: application/json

{
   "Attendee": { 
      "AttendeeId": "string",
      "Capabilities": { 
         "Audio": "string",
         "Content": "string",
         "Video": "string"
      },
      "ExternalUserId": "string",
      "JoinToken": "string"
   }
}
```

## Response Elements
<a name="API_meeting-chime_GetAttendee_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

 ** [Attendee](#API_meeting-chime_GetAttendee_ResponseSyntax) **   <a name="chimesdk-meeting-chime_GetAttendee-response-Attendee"></a>
The Amazon Chime SDK attendee information.  
Type: [Attendee](API_meeting-chime_Attendee.md) object

## Errors
<a name="API_meeting-chime_GetAttendee_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** NotFoundException **   
One or more of the resources in the request does not exist in the system.    
 ** RequestId **   
The request ID associated with the call responsible for the exception.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_GetAttendee_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/GetAttendee) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/GetAttendee) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/GetAttendee) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/GetAttendee) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/GetAttendee) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/GetAttendee) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/GetAttendee) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/GetAttendee) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/GetAttendee) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/GetAttendee) 

# GetMeeting
<a name="API_meeting-chime_GetMeeting"></a>

Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK](https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html) in the *Amazon Chime Developer Guide*.

## Request Syntax
<a name="API_meeting-chime_GetMeeting_RequestSyntax"></a>

```
GET /meetings/MeetingId HTTP/1.1
```

## URI Request Parameters
<a name="API_meeting-chime_GetMeeting_RequestParameters"></a>

The request uses the following URI parameters.

 ** [MeetingId](#API_meeting-chime_GetMeeting_RequestSyntax) **   <a name="chimesdk-meeting-chime_GetMeeting-request-uri-MeetingId"></a>
The Amazon Chime SDK meeting ID.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

## Request Body
<a name="API_meeting-chime_GetMeeting_RequestBody"></a>

The request does not have a request body.

## Response Syntax
<a name="API_meeting-chime_GetMeeting_ResponseSyntax"></a>

```
HTTP/1.1 200
Content-type: application/json

{
   "Meeting": { 
      "ExternalMeetingId": "string",
      "MediaPlacement": { 
         "AudioFallbackUrl": "string",
         "AudioHostUrl": "string",
         "EventIngestionUrl": "string",
         "ScreenDataUrl": "string",
         "ScreenSharingUrl": "string",
         "ScreenViewingUrl": "string",
         "SignalingUrl": "string",
         "TurnControlUrl": "string"
      },
      "MediaRegion": "string",
      "MeetingArn": "string",
      "MeetingFeatures": { 
         "Attendee": { 
            "MaxCount": number
         },
         "Audio": { 
            "EchoReduction": "string"
         },
         "Content": { 
            "MaxResolution": "string"
         },
         "Video": { 
            "MaxResolution": "string"
         }
      },
      "MeetingHostId": "string",
      "MeetingId": "string",
      "PrimaryMeetingId": "string",
      "TenantIds": [ "string" ]
   }
}
```

## Response Elements
<a name="API_meeting-chime_GetMeeting_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

 ** [Meeting](#API_meeting-chime_GetMeeting_ResponseSyntax) **   <a name="chimesdk-meeting-chime_GetMeeting-response-Meeting"></a>
The Amazon Chime SDK meeting information.  
Type: [Meeting](API_meeting-chime_Meeting.md) object

## Errors
<a name="API_meeting-chime_GetMeeting_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** NotFoundException **   
One or more of the resources in the request does not exist in the system.    
 ** RequestId **   
The request ID associated with the call responsible for the exception.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_GetMeeting_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/GetMeeting) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/GetMeeting) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/GetMeeting) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/GetMeeting) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/GetMeeting) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/GetMeeting) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/GetMeeting) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/GetMeeting) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/GetMeeting) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/GetMeeting) 

# ListAttendees
<a name="API_meeting-chime_ListAttendees"></a>

 Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK](https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html) in the *Amazon Chime Developer Guide*. 

## Request Syntax
<a name="API_meeting-chime_ListAttendees_RequestSyntax"></a>

```
GET /meetings/MeetingId/attendees?max-results=MaxResults&next-token=NextToken HTTP/1.1
```

## URI Request Parameters
<a name="API_meeting-chime_ListAttendees_RequestParameters"></a>

The request uses the following URI parameters.

 ** [MaxResults](#API_meeting-chime_ListAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_ListAttendees-request-uri-MaxResults"></a>
The maximum number of results to return in a single call.  
Valid Range: Minimum value of 1. Maximum value of 100.

 ** [MeetingId](#API_meeting-chime_ListAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_ListAttendees-request-uri-MeetingId"></a>
The Amazon Chime SDK meeting ID.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

 ** [NextToken](#API_meeting-chime_ListAttendees_RequestSyntax) **   <a name="chimesdk-meeting-chime_ListAttendees-request-uri-NextToken"></a>
The token to use to retrieve the next page of results.  
Length Constraints: Maximum length of 4096.

## Request Body
<a name="API_meeting-chime_ListAttendees_RequestBody"></a>

The request does not have a request body.

## Response Syntax
<a name="API_meeting-chime_ListAttendees_ResponseSyntax"></a>

```
HTTP/1.1 200
Content-type: application/json

{
   "Attendees": [ 
      { 
         "AttendeeId": "string",
         "Capabilities": { 
            "Audio": "string",
            "Content": "string",
            "Video": "string"
         },
         "ExternalUserId": "string",
         "JoinToken": "string"
      }
   ],
   "NextToken": "string"
}
```

## Response Elements
<a name="API_meeting-chime_ListAttendees_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

 ** [Attendees](#API_meeting-chime_ListAttendees_ResponseSyntax) **   <a name="chimesdk-meeting-chime_ListAttendees-response-Attendees"></a>
The Amazon Chime SDK attendee information.  
Type: Array of [Attendee](API_meeting-chime_Attendee.md) objects

 ** [NextToken](#API_meeting-chime_ListAttendees_ResponseSyntax) **   <a name="chimesdk-meeting-chime_ListAttendees-response-NextToken"></a>
The token to use to retrieve the next page of results.  
Type: String  
Length Constraints: Maximum length of 4096.

## Errors
<a name="API_meeting-chime_ListAttendees_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** NotFoundException **   
One or more of the resources in the request does not exist in the system.    
 ** RequestId **   
The request ID associated with the call responsible for the exception.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_ListAttendees_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/ListAttendees) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/ListAttendees) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/ListAttendees) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/ListAttendees) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/ListAttendees) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/ListAttendees) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/ListAttendees) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/ListAttendees) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/ListAttendees) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/ListAttendees) 

# ListTagsForResource
<a name="API_meeting-chime_ListTagsForResource"></a>

Returns a list of the tags available for the specified resource.

## Request Syntax
<a name="API_meeting-chime_ListTagsForResource_RequestSyntax"></a>

```
GET /tags?arn=ResourceARN HTTP/1.1
```

## URI Request Parameters
<a name="API_meeting-chime_ListTagsForResource_RequestParameters"></a>

The request uses the following URI parameters.

 ** [ResourceARN](#API_meeting-chime_ListTagsForResource_RequestSyntax) **   <a name="chimesdk-meeting-chime_ListTagsForResource-request-uri-ResourceARN"></a>
The ARN of the resource.  
Length Constraints: Minimum length of 1. Maximum length of 1011.  
Pattern: `^arn:.*`   
Required: Yes

## Request Body
<a name="API_meeting-chime_ListTagsForResource_RequestBody"></a>

The request does not have a request body.

## Response Syntax
<a name="API_meeting-chime_ListTagsForResource_ResponseSyntax"></a>

```
HTTP/1.1 200
Content-type: application/json

{
   "Tags": [ 
      { 
         "Key": "string",
         "Value": "string"
      }
   ]
}
```

## Response Elements
<a name="API_meeting-chime_ListTagsForResource_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

 ** [Tags](#API_meeting-chime_ListTagsForResource_ResponseSyntax) **   <a name="chimesdk-meeting-chime_ListTagsForResource-response-Tags"></a>
The tags requested for the specified resource.  
Type: Array of [Tag](API_meeting-chime_Tag.md) objects  
Array Members: Minimum number of 0 items. Maximum number of 50 items.

## Errors
<a name="API_meeting-chime_ListTagsForResource_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** LimitExceededException **   
The request exceeds the resource limit.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ResourceNotFoundException **   
The resource that you want to tag couldn't be found.    
 ** RequestId **   
The ID of the resource that couldn't be found.  
 ** ResourceName **   
The name of the resource that couldn't be found.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_ListTagsForResource_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/ListTagsForResource) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/ListTagsForResource) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/ListTagsForResource) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/ListTagsForResource) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/ListTagsForResource) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/ListTagsForResource) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/ListTagsForResource) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/ListTagsForResource) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/ListTagsForResource) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/ListTagsForResource) 

# StartMeetingTranscription
<a name="API_meeting-chime_StartMeetingTranscription"></a>

Starts transcription for the specified `meetingId`. For more information, refer to [ Using Amazon Chime SDK live transcription ](https://docs.aws.amazon.com/chime-sdk/latest/dg/meeting-transcription.html) in the *Amazon Chime SDK Developer Guide*.

If you specify an invalid configuration, a `TranscriptFailed` event will be sent with the contents of the `BadRequestException` generated by Amazon Transcribe. For more information on each parameter and which combinations are valid, refer to the [StartStreamTranscription](https://docs.aws.amazon.com/transcribe/latest/APIReference/API_streaming_StartStreamTranscription.html) API in the *Amazon Transcribe Developer Guide*.

**Note**  
By default, Amazon Transcribe may use and store audio content processed by the service to develop and improve AWS AI/ML services as further described in section 50 of the [AWS Service Terms](https://aws.amazon.com/service-terms/). Using Amazon Transcribe may be subject to federal and state laws or regulations regarding the recording or interception of electronic communications. It is your and your end users’ responsibility to comply with all applicable laws regarding the recording, including properly notifying all participants in a recorded session or communication that the session or communication is being recorded, and obtaining all necessary consents. You can opt out from AWS using audio content to develop and improve AWS AI/ML services by configuring an AI services opt out policy using AWS Organizations.

## Request Syntax
<a name="API_meeting-chime_StartMeetingTranscription_RequestSyntax"></a>

```
POST /meetings/MeetingId/transcription?operation=start HTTP/1.1
Content-type: application/json

{
   "TranscriptionConfiguration": { 
      "EngineTranscribeMedicalSettings": { 
         "ContentIdentificationType": "string",
         "LanguageCode": "string",
         "Region": "string",
         "Specialty": "string",
         "Type": "string",
         "VocabularyName": "string"
      },
      "EngineTranscribeSettings": { 
         "ContentIdentificationType": "string",
         "ContentRedactionType": "string",
         "EnablePartialResultsStabilization": boolean,
         "IdentifyLanguage": boolean,
         "LanguageCode": "string",
         "LanguageModelName": "string",
         "LanguageOptions": "string",
         "PartialResultsStability": "string",
         "PiiEntityTypes": "string",
         "PreferredLanguage": "string",
         "Region": "string",
         "VocabularyFilterMethod": "string",
         "VocabularyFilterName": "string",
         "VocabularyFilterNames": "string",
         "VocabularyName": "string",
         "VocabularyNames": "string"
      }
   }
}
```

## URI Request Parameters
<a name="API_meeting-chime_StartMeetingTranscription_RequestParameters"></a>

The request uses the following URI parameters.

 ** [MeetingId](#API_meeting-chime_StartMeetingTranscription_RequestSyntax) **   <a name="chimesdk-meeting-chime_StartMeetingTranscription-request-uri-MeetingId"></a>
The unique ID of the meeting being transcribed.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

## Request Body
<a name="API_meeting-chime_StartMeetingTranscription_RequestBody"></a>

The request accepts the following data in JSON format.

 ** [TranscriptionConfiguration](#API_meeting-chime_StartMeetingTranscription_RequestSyntax) **   <a name="chimesdk-meeting-chime_StartMeetingTranscription-request-TranscriptionConfiguration"></a>
The configuration for the current transcription operation. Must contain `EngineTranscribeSettings` or `EngineTranscribeMedicalSettings`.  
Type: [TranscriptionConfiguration](API_meeting-chime_TranscriptionConfiguration.md) object  
Required: Yes

## Response Syntax
<a name="API_meeting-chime_StartMeetingTranscription_ResponseSyntax"></a>

```
HTTP/1.1 200
```

## Response Elements
<a name="API_meeting-chime_StartMeetingTranscription_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response with an empty HTTP body.

## Errors
<a name="API_meeting-chime_StartMeetingTranscription_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** LimitExceededException **   
The request exceeds the resource limit.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** NotFoundException **   
One or more of the resources in the request does not exist in the system.    
 ** RequestId **   
The request ID associated with the call responsible for the exception.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

 ** UnprocessableEntityException **   
The request was well-formed but was unable to be followed due to semantic errors.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 422

## See Also
<a name="API_meeting-chime_StartMeetingTranscription_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/StartMeetingTranscription) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/StartMeetingTranscription) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/StartMeetingTranscription) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/StartMeetingTranscription) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/StartMeetingTranscription) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/StartMeetingTranscription) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/StartMeetingTranscription) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/StartMeetingTranscription) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/StartMeetingTranscription) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/StartMeetingTranscription) 

# StopMeetingTranscription
<a name="API_meeting-chime_StopMeetingTranscription"></a>

Stops transcription for the specified `meetingId`. For more information, refer to [ Using Amazon Chime SDK live transcription ](https://docs.aws.amazon.com/chime-sdk/latest/dg/meeting-transcription.html) in the *Amazon Chime SDK Developer Guide*.

**Important**  
By default, Amazon Transcribe may use and store audio content processed by the service to develop and improve AWS AI/ML services as further described in section 50 of the [AWS Service Terms](https://aws.amazon.com/service-terms/). Using Amazon Transcribe may be subject to federal and state laws or regulations regarding the recording or interception of electronic communications. It is your and your end users’ responsibility to comply with all applicable laws regarding the recording, including properly notifying all participants in a recorded session or communication that the session or communication is being recorded, and obtaining all necessary consents. You can opt out from AWS using audio content to develop and improve AWS AI/ML services by configuring an AI services opt out policy using AWS Organizations.

## Request Syntax
<a name="API_meeting-chime_StopMeetingTranscription_RequestSyntax"></a>

```
POST /meetings/MeetingId/transcription?operation=stop HTTP/1.1
```

## URI Request Parameters
<a name="API_meeting-chime_StopMeetingTranscription_RequestParameters"></a>

The request uses the following URI parameters.

 ** [MeetingId](#API_meeting-chime_StopMeetingTranscription_RequestSyntax) **   <a name="chimesdk-meeting-chime_StopMeetingTranscription-request-uri-MeetingId"></a>
The unique ID of the meeting for which you stop transcription.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

## Request Body
<a name="API_meeting-chime_StopMeetingTranscription_RequestBody"></a>

The request does not have a request body.

## Response Syntax
<a name="API_meeting-chime_StopMeetingTranscription_ResponseSyntax"></a>

```
HTTP/1.1 200
```

## Response Elements
<a name="API_meeting-chime_StopMeetingTranscription_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response with an empty HTTP body.

## Errors
<a name="API_meeting-chime_StopMeetingTranscription_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** NotFoundException **   
One or more of the resources in the request does not exist in the system.    
 ** RequestId **   
The request ID associated with the call responsible for the exception.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

 ** UnprocessableEntityException **   
The request was well-formed but was unable to be followed due to semantic errors.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 422

## See Also
<a name="API_meeting-chime_StopMeetingTranscription_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/StopMeetingTranscription) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/StopMeetingTranscription) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/StopMeetingTranscription) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/StopMeetingTranscription) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/StopMeetingTranscription) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/StopMeetingTranscription) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/StopMeetingTranscription) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/StopMeetingTranscription) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/StopMeetingTranscription) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/StopMeetingTranscription) 

# TagResource
<a name="API_meeting-chime_TagResource"></a>

The resource that supports tags.

## Request Syntax
<a name="API_meeting-chime_TagResource_RequestSyntax"></a>

```
POST /tags?operation=tag-resource HTTP/1.1
Content-type: application/json

{
   "ResourceARN": "string",
   "Tags": [ 
      { 
         "Key": "string",
         "Value": "string"
      }
   ]
}
```

## URI Request Parameters
<a name="API_meeting-chime_TagResource_RequestParameters"></a>

The request does not use any URI parameters.

## Request Body
<a name="API_meeting-chime_TagResource_RequestBody"></a>

The request accepts the following data in JSON format.

 ** [ResourceARN](#API_meeting-chime_TagResource_RequestSyntax) **   <a name="chimesdk-meeting-chime_TagResource-request-ResourceARN"></a>
The ARN of the resource.  
Type: String  
Length Constraints: Minimum length of 1. Maximum length of 1011.  
Pattern: `^arn:.*`   
Required: Yes

 ** [Tags](#API_meeting-chime_TagResource_RequestSyntax) **   <a name="chimesdk-meeting-chime_TagResource-request-Tags"></a>
Lists the requested tags.  
Type: Array of [Tag](API_meeting-chime_Tag.md) objects  
Array Members: Minimum number of 0 items. Maximum number of 50 items.  
Required: Yes

## Response Syntax
<a name="API_meeting-chime_TagResource_ResponseSyntax"></a>

```
HTTP/1.1 204
```

## Response Elements
<a name="API_meeting-chime_TagResource_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 204 response with an empty HTTP body.

## Errors
<a name="API_meeting-chime_TagResource_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** LimitExceededException **   
The request exceeds the resource limit.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ResourceNotFoundException **   
The resource that you want to tag couldn't be found.    
 ** RequestId **   
The ID of the resource that couldn't be found.  
 ** ResourceName **   
The name of the resource that couldn't be found.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** TooManyTagsException **   
Too many tags were added to the specified resource.    
 ** RequestId **   
The ID of the request that contains too many tags.  
 ** ResourceName **   
The name of the resource that received too many tags.
HTTP Status Code: 400

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_TagResource_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/TagResource) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/TagResource) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/TagResource) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/TagResource) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/TagResource) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/TagResource) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/TagResource) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/TagResource) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/TagResource) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/TagResource) 

# UntagResource
<a name="API_meeting-chime_UntagResource"></a>

Removes the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you attempt to remove tags from a resource that were already removed. Note the following:
+ To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information, see the documentation for the service whose resource you want to untag.
+ You can only tag resources that are located in the specified AWS Region for the calling AWS account.

 **Minimum permissions** 

In addition to the `tag:UntagResources` permission required by this operation, you must also have the remove tags permission defined by the service that created the resource. For example, to remove the tags from an Amazon EC2 instance using the `UntagResources` operation, you must have both of the following permissions:

 `tag:UntagResource` 

 `ChimeSDKMeetings:DeleteTags` 

## Request Syntax
<a name="API_meeting-chime_UntagResource_RequestSyntax"></a>

```
POST /tags?operation=untag-resource HTTP/1.1
Content-type: application/json

{
   "ResourceARN": "string",
   "TagKeys": [ "string" ]
}
```

## URI Request Parameters
<a name="API_meeting-chime_UntagResource_RequestParameters"></a>

The request does not use any URI parameters.

## Request Body
<a name="API_meeting-chime_UntagResource_RequestBody"></a>

The request accepts the following data in JSON format.

 ** [ResourceARN](#API_meeting-chime_UntagResource_RequestSyntax) **   <a name="chimesdk-meeting-chime_UntagResource-request-ResourceARN"></a>
The ARN of the resource that you're removing tags from.  
Type: String  
Length Constraints: Minimum length of 1. Maximum length of 1011.  
Pattern: `^arn:.*`   
Required: Yes

 ** [TagKeys](#API_meeting-chime_UntagResource_RequestSyntax) **   <a name="chimesdk-meeting-chime_UntagResource-request-TagKeys"></a>
The tag keys being removed from the resources.  
Type: Array of strings  
Array Members: Minimum number of 0 items. Maximum number of 50 items.  
Length Constraints: Minimum length of 1. Maximum length of 128.  
Pattern: `^[a-zA-Z+-=._:/]+$`   
Required: Yes

## Response Syntax
<a name="API_meeting-chime_UntagResource_ResponseSyntax"></a>

```
HTTP/1.1 204
```

## Response Elements
<a name="API_meeting-chime_UntagResource_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 204 response with an empty HTTP body.

## Errors
<a name="API_meeting-chime_UntagResource_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** LimitExceededException **   
The request exceeds the resource limit.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ResourceNotFoundException **   
The resource that you want to tag couldn't be found.    
 ** RequestId **   
The ID of the resource that couldn't be found.  
 ** ResourceName **   
The name of the resource that couldn't be found.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_UntagResource_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/UntagResource) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/UntagResource) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/UntagResource) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/UntagResource) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/UntagResource) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/UntagResource) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/UntagResource) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/UntagResource) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/UntagResource) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/UntagResource) 

# UpdateAttendeeCapabilities
<a name="API_meeting-chime_UpdateAttendeeCapabilities"></a>

The capabilities that you want to update.

**Note**  
You use the capabilities with a set of values that control what the capabilities can do, such as `SendReceive` data. For more information about those values, see [AttendeeCapabilities](API_meeting-chime_AttendeeCapabilities.md).

When using capabilities, be aware of these corner cases:
+ If you specify `MeetingFeatures:Video:MaxResolution:None` when you create a meeting, all API requests that include `SendReceive`, `Send`, or `Receive` for `AttendeeCapabilities:Video` will be rejected with `ValidationError 400`.
+ If you specify `MeetingFeatures:Content:MaxResolution:None` when you create a meeting, all API requests that include `SendReceive`, `Send`, or `Receive` for `AttendeeCapabilities:Content` will be rejected with `ValidationError 400`.
+ You can't set `content` capabilities to `SendReceive` or `Receive` unless you also set `video` capabilities to `SendReceive` or `Receive`. If you don't set the `video` capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your `video` capability to receive and you set your `content` capability to not receive.
+ If meeting features is defined as `Video:MaxResolution:None` but `Content:MaxResolution` is defined as something other than `None` and attendee capabilities are not defined in the API request, then the default attendee video capability is set to `Receive` and attendee content capability is set to `SendReceive`. This is because content `SendReceive` requires video to be at least `Receive`.
+ When you change an `audio` capability from `None` or `Receive` to `Send` or `SendReceive` , and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.
+ When you change a `video` or `content` capability from `None` or `Receive` to `Send` or `SendReceive` , and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.

## Request Syntax
<a name="API_meeting-chime_UpdateAttendeeCapabilities_RequestSyntax"></a>

```
PUT /meetings/MeetingId/attendees/AttendeeId/capabilities HTTP/1.1
Content-type: application/json

{
   "Capabilities": { 
      "Audio": "string",
      "Content": "string",
      "Video": "string"
   }
}
```

## URI Request Parameters
<a name="API_meeting-chime_UpdateAttendeeCapabilities_RequestParameters"></a>

The request uses the following URI parameters.

 ** [AttendeeId](#API_meeting-chime_UpdateAttendeeCapabilities_RequestSyntax) **   <a name="chimesdk-meeting-chime_UpdateAttendeeCapabilities-request-uri-AttendeeId"></a>
The ID of the attendee associated with the update request.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

 ** [MeetingId](#API_meeting-chime_UpdateAttendeeCapabilities_RequestSyntax) **   <a name="chimesdk-meeting-chime_UpdateAttendeeCapabilities-request-uri-MeetingId"></a>
The ID of the meeting associated with the update request.  
Pattern: `[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}`   
Required: Yes

## Request Body
<a name="API_meeting-chime_UpdateAttendeeCapabilities_RequestBody"></a>

The request accepts the following data in JSON format.

 ** [Capabilities](#API_meeting-chime_UpdateAttendeeCapabilities_RequestSyntax) **   <a name="chimesdk-meeting-chime_UpdateAttendeeCapabilities-request-Capabilities"></a>
The capabilities that you want to update.  
Type: [AttendeeCapabilities](API_meeting-chime_AttendeeCapabilities.md) object  
Required: Yes

## Response Syntax
<a name="API_meeting-chime_UpdateAttendeeCapabilities_ResponseSyntax"></a>

```
HTTP/1.1 200
Content-type: application/json

{
   "Attendee": { 
      "AttendeeId": "string",
      "Capabilities": { 
         "Audio": "string",
         "Content": "string",
         "Video": "string"
      },
      "ExternalUserId": "string",
      "JoinToken": "string"
   }
}
```

## Response Elements
<a name="API_meeting-chime_UpdateAttendeeCapabilities_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

 ** [Attendee](#API_meeting-chime_UpdateAttendeeCapabilities_ResponseSyntax) **   <a name="chimesdk-meeting-chime_UpdateAttendeeCapabilities-response-Attendee"></a>
The updated attendee data.  
Type: [Attendee](API_meeting-chime_Attendee.md) object

## Errors
<a name="API_meeting-chime_UpdateAttendeeCapabilities_Errors"></a>

For information about the errors that are common to all actions, see [Common Errors](CommonErrors.md).

 ** BadRequestException **   
The input parameters don't match the service's restrictions.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 400

 ** ConflictException **   
Multiple instances of the same request have been made simultaneously.    
 ** RequestId **   
The ID of the request involved in the conflict.
HTTP Status Code: 409

 ** ForbiddenException **   
The client is permanently forbidden from making the request.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 403

 ** NotFoundException **   
One or more of the resources in the request does not exist in the system.    
 ** RequestId **   
The request ID associated with the call responsible for the exception.
HTTP Status Code: 404

 ** ServiceFailureException **   
The service encountered an unexpected error.    
 ** RequestId **   
The ID of the failed request.
HTTP Status Code: 500

 ** ServiceUnavailableException **   
The service is currently unavailable.    
 ** RequestId **   
The request id associated with the call responsible for the exception.  
 ** RetryAfterSeconds **   
The number of seconds the caller should wait before retrying.
HTTP Status Code: 503

 ** ThrottlingException **   
The number of customer requests exceeds the request rate limit.    
 ** RequestId **   
The ID of the request that exceeded the throttling limit.
HTTP Status Code: 429

 ** UnauthorizedException **   
The user isn't authorized to request a resource.    
 ** RequestId **   
The request id associated with the call responsible for the exception.
HTTP Status Code: 401

## See Also
<a name="API_meeting-chime_UpdateAttendeeCapabilities_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities) 