The AccountsConferencesParticipantsApi provides endpoints to manage individual participants within a specific Twilio Conference. You can create new participants, fetch details for an existing participant, list all participants in a conference, update participant properties, or remove (kick) a participant from a conference.
All API requests are relative to https://api.twilio.com.
| Method | HTTP request | Description |
------------- | ------------- | ------------- |
| [**CreateParticipant**](#CreateParticipant) | **Post** /2010-04-01/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants.json | |
| [**DeleteParticipant**](#DeleteParticipant) | **Delete** /2010-04-01/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants/{CallSid}.json | Kick a participant from a given conference |
| [**FetchParticipant**](#FetchParticipant) | **Get** /2010-04-01/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants/{CallSid}.json | Fetch an instance of a participant |
| [**ListParticipant**](#ListParticipant) | **Get** /2010-04-01/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants.json | Retrieve a list of participants belonging to the account used to make the request |
| [**UpdateParticipant**](#UpdateParticipant) | **Post** /2010-04-01/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants/{CallSid}.json | Update the properties of the participant |