{"id":15286044,"url":"https://github.com/freeclimbapi/php-sdk","last_synced_at":"2025-05-07T03:46:59.698Z","repository":{"id":38817542,"uuid":"243380584","full_name":"FreeClimbAPI/php-sdk","owner":"FreeClimbAPI","description":"PHP SDK for the FreeClimb API","archived":false,"fork":false,"pushed_at":"2025-03-07T20:30:32.000Z","size":1980,"stargazers_count":0,"open_issues_count":0,"forks_count":6,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-05-07T03:46:50.725Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FreeClimbAPI.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-02-26T22:36:14.000Z","updated_at":"2025-03-07T20:15:08.000Z","dependencies_parsed_at":"2024-12-23T21:27:23.603Z","dependency_job_id":"16e97d30-b377-4f48-9eae-fc0d45d133f6","html_url":"https://github.com/FreeClimbAPI/php-sdk","commit_stats":{"total_commits":120,"total_committers":12,"mean_commits":10.0,"dds":0.7833333333333333,"last_synced_commit":"181ef1712f4ac8da835ec7376cf3853e4b077712"},"previous_names":[],"tags_count":31,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2Fphp-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2Fphp-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2Fphp-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2Fphp-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FreeClimbAPI","download_url":"https://codeload.github.com/FreeClimbAPI/php-sdk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252810275,"owners_count":21807759,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-30T15:10:16.464Z","updated_at":"2025-05-07T03:46:59.683Z","avatar_url":"https://github.com/FreeClimbAPI.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FreeClimbAPI\n\nFreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request.\n\nFor more information, please visit [https://www.freeclimb.com/support/](https://www.freeclimb.com/support/).\n\n## Installation \u0026 Usage\n\n### Requirements\n\nPHP 7.4 and later.\nShould also work with PHP 8.0.\n\n### Composer\n\nTo install the bindings via [Composer](https://getcomposer.org/), add the following to `composer.json`:\n\n```json\n{\n  \"repositories\": [\n    {\n      \"type\": \"vcs\",\n      \"url\": \"https://https://github.com/freeclimbapi/php-sdk.git\"\n    }\n  ],\n  \"require\": {\n    \"freeclimbapi/php-sdk\": \"*@dev\"\n  }\n}\n```\n\nThen run `composer install`\n\n### Manual Installation\n\nDownload the files and include `autoload.php`:\n\n```php\n\u003c?php\nrequire_once('/path/to/FreeClimbAPI/vendor/autoload.php');\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```php\n\u003c?php\nrequire_once(__DIR__ . '/vendor/autoload.php');\n\n\n\n// Configure HTTP basic authorization: fc\n$config = FreeClimb\\Api\\Configuration::getDefaultConfiguration()\n              -\u003esetUsername('YOUR_ACCOUNT_ID')\n              -\u003esetPassword('YOUR_API_KEY');\n\n\n$apiInstance = new FreeClimb\\Api\\Api\\DefaultApi(\n    // If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    // This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$buy_incoming_number_request = new \\FreeClimb\\Api\\Model\\BuyIncomingNumberRequest(); // \\FreeClimb\\Api\\Model\\BuyIncomingNumberRequest | Incoming Number transaction details\n\n\ntry {\n    $result = $apiInstance-\u003ebuyAPhoneNumber($buy_incoming_number_request);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-\u003ebuyAPhoneNumber: ', $e-\u003egetMessage(), PHP_EOL;\n}\n\n```\n\n## Using PerCL\nThe PerclScript class provides a convenient wrapper to handle PerCL generation in your responses. Simply execute `json_encode` with an instance of the `PerclScript` class and you will have `PerclCommands` serialized and formatted the way you need.\n\n\n```php\n\u003c?php\nrequire_once(__DIR__ . '/vendor/autoload.php');\n\n$say = new \\FreeClimb\\Api\\Model\\Say();\n$sms = new \\FreeClimb\\Api\\Model\\Sms();\n$script = new \\FreeClimb\\Api\\Model\\PerclScript();\n\n$say-\u003esetText(\"hello world\");\n$sms-\u003esetFrom(\"from number\");\n$sms-\u003esetTo(\"to number\");\n$sms-\u003esetText(\"hello world SMS\");\n\n\n$script-\u003esetCommands(array($say, $sms));\n\njson_encode($script);\n/**\n* [\n*   {\n*     \"Say\": {\n*       \"text\": \"hello world\"\n*     }\n*   },\n*   {\n*     \"Sms\": {\n*       \"from\": \"from number\",\n*       \"to\": \"to number\",\n*       \"text\": \"hello world SMS\"\n*     }\n*   }\n* ]\n*/\n\n?\u003e\n```\n\n## API Endpoints\n\nAll URIs are relative to *https://www.freeclimb.com/apiserver*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*DefaultApi* | [**buyAPhoneNumber**](docs/Api/DefaultApi.md#buyaphonenumber) | **POST** /Accounts/{accountId}/IncomingPhoneNumbers | Buy a Phone Number\n*DefaultApi* | [**createAConference**](docs/Api/DefaultApi.md#createaconference) | **POST** /Accounts/{accountId}/Conferences | Create a Conference\n*DefaultApi* | [**createAQueue**](docs/Api/DefaultApi.md#createaqueue) | **POST** /Accounts/{accountId}/Queues | Create a Queue\n*DefaultApi* | [**createAnApplication**](docs/Api/DefaultApi.md#createanapplication) | **POST** /Accounts/{accountId}/Applications | Create an application\n*DefaultApi* | [**createKnowledgeBaseCompletion**](docs/Api/DefaultApi.md#createknowledgebasecompletion) | **POST** /Accounts/{accountId}/KnowledgeBases/{knowledgeBaseId}/Completion | Query the knowledge base\n*DefaultApi* | [**deleteARecording**](docs/Api/DefaultApi.md#deletearecording) | **DELETE** /Accounts/{accountId}/Recordings/{recordingId} | Delete a Recording\n*DefaultApi* | [**deleteAnApplication**](docs/Api/DefaultApi.md#deleteanapplication) | **DELETE** /Accounts/{accountId}/Applications/{applicationId} | Delete an application\n*DefaultApi* | [**deleteAnIncomingNumber**](docs/Api/DefaultApi.md#deleteanincomingnumber) | **DELETE** /Accounts/{accountId}/IncomingPhoneNumbers/{phoneNumberId} | Delete an Incoming Number\n*DefaultApi* | [**dequeueAMember**](docs/Api/DefaultApi.md#dequeueamember) | **POST** /Accounts/{accountId}/Queues/{queueId}/Members/{callId} | Dequeue a Member\n*DefaultApi* | [**dequeueHeadMember**](docs/Api/DefaultApi.md#dequeueheadmember) | **POST** /Accounts/{accountId}/Queues/{queueId}/Members/Front | Dequeue Head Member\n*DefaultApi* | [**downloadARecordingFile**](docs/Api/DefaultApi.md#downloadarecordingfile) | **GET** /Accounts/{accountId}/Recordings/{recordingId}/Download | Download a Recording File\n*DefaultApi* | [**filterLogs**](docs/Api/DefaultApi.md#filterlogs) | **POST** /Accounts/{accountId}/Logs | Filter Logs\n*DefaultApi* | [**getACall**](docs/Api/DefaultApi.md#getacall) | **GET** /Accounts/{accountId}/Calls/{callId} | Get a Call\n*DefaultApi* | [**getAConference**](docs/Api/DefaultApi.md#getaconference) | **GET** /Accounts/{accountId}/Conferences/{conferenceId} | Get a Conference\n*DefaultApi* | [**getAMember**](docs/Api/DefaultApi.md#getamember) | **GET** /Accounts/{accountId}/Queues/{queueId}/Members/{callId} | Get a Member\n*DefaultApi* | [**getAParticipant**](docs/Api/DefaultApi.md#getaparticipant) | **GET** /Accounts/{accountId}/Conferences/{conferenceId}/Participants/{callId} | Get a Participant\n*DefaultApi* | [**getAQueue**](docs/Api/DefaultApi.md#getaqueue) | **GET** /Accounts/{accountId}/Queues/{queueId} | Get a Queue\n*DefaultApi* | [**getARecording**](docs/Api/DefaultApi.md#getarecording) | **GET** /Accounts/{accountId}/Recordings/{recordingId} | Get a Recording\n*DefaultApi* | [**getAnAccount**](docs/Api/DefaultApi.md#getanaccount) | **GET** /Accounts/{accountId} | Get an Account\n*DefaultApi* | [**getAnApplication**](docs/Api/DefaultApi.md#getanapplication) | **GET** /Accounts/{accountId}/Applications/{applicationId} | Get an Application\n*DefaultApi* | [**getAnIncomingNumber**](docs/Api/DefaultApi.md#getanincomingnumber) | **GET** /Accounts/{accountId}/IncomingPhoneNumbers/{phoneNumberId} | Get an Incoming Number\n*DefaultApi* | [**getAnSmsMessage**](docs/Api/DefaultApi.md#getansmsmessage) | **GET** /Accounts/{accountId}/Messages/{messageId} | Get an SMS Message\n*DefaultApi* | [**getHeadMember**](docs/Api/DefaultApi.md#getheadmember) | **GET** /Accounts/{accountId}/Queues/{queueId}/Members/Front | Get Head Member\n*DefaultApi* | [**getTenDLCSmsBrand**](docs/Api/DefaultApi.md#gettendlcsmsbrand) | **GET** /Accounts/{accountId}/Messages/10DLC/Brands/{brandId} | Get a 10DLC SMS Brand\n*DefaultApi* | [**getTenDLCSmsBrands**](docs/Api/DefaultApi.md#gettendlcsmsbrands) | **GET** /Accounts/{accountId}/Messages/10DLC/Brands | Get list of SMS 10DLC Brands\n*DefaultApi* | [**getTenDLCSmsCampaign**](docs/Api/DefaultApi.md#gettendlcsmscampaign) | **GET** /Accounts/{accountId}/Messages/10DLC/Campaigns/{campaignId} | Get a 10DLC SMS Campaign\n*DefaultApi* | [**getTenDLCSmsCampaigns**](docs/Api/DefaultApi.md#gettendlcsmscampaigns) | **GET** /Accounts/{accountId}/Messages/10DLC/Campaigns | Get list of SMS 10DLC Campaigns\n*DefaultApi* | [**getTenDLCSmsPartnerCampaign**](docs/Api/DefaultApi.md#gettendlcsmspartnercampaign) | **GET** /Accounts/{accountId}/Messages/10DLC/PartnerCampaigns/{campaignId} | Get a 10DLC SMS Partner Campaign\n*DefaultApi* | [**getTenDLCSmsPartnerCampaigns**](docs/Api/DefaultApi.md#gettendlcsmspartnercampaigns) | **GET** /Accounts/{accountId}/Messages/10DLC/PartnerCampaigns | Get list of SMS 10DLC Partner Campaigns\n*DefaultApi* | [**getTollFreeSmsCampaign**](docs/Api/DefaultApi.md#gettollfreesmscampaign) | **GET** /Accounts/{accountId}/Messages/TollFree/Campaigns/{campaignId} | Get a TollFree SMS Campaign\n*DefaultApi* | [**getTollFreeSmsCampaigns**](docs/Api/DefaultApi.md#gettollfreesmscampaigns) | **GET** /Accounts/{accountId}/Messages/TollFree/Campaigns | Get list of TollFree Campaigns\n*DefaultApi* | [**listActiveQueues**](docs/Api/DefaultApi.md#listactivequeues) | **GET** /Accounts/{accountId}/Queues | List Active Queues\n*DefaultApi* | [**listAllAccountLogs**](docs/Api/DefaultApi.md#listallaccountlogs) | **GET** /Accounts/{accountId}/Logs | List All Account Logs\n*DefaultApi* | [**listApplications**](docs/Api/DefaultApi.md#listapplications) | **GET** /Accounts/{accountId}/Applications | List applications\n*DefaultApi* | [**listAvailableNumbers**](docs/Api/DefaultApi.md#listavailablenumbers) | **GET** /AvailablePhoneNumbers | List available numbers\n*DefaultApi* | [**listCallLogs**](docs/Api/DefaultApi.md#listcalllogs) | **GET** /Accounts/{accountId}/Calls/{callId}/Logs | List Call Logs\n*DefaultApi* | [**listCallRecordings**](docs/Api/DefaultApi.md#listcallrecordings) | **GET** /Accounts/{accountId}/Calls/{callId}/Recordings | List Call Recordings\n*DefaultApi* | [**listCalls**](docs/Api/DefaultApi.md#listcalls) | **GET** /Accounts/{accountId}/Calls | List Calls\n*DefaultApi* | [**listConferenceRecordings**](docs/Api/DefaultApi.md#listconferencerecordings) | **GET** /Accounts/{accountId}/Conferences/{conferenceId}/Recordings | List Conference Recordings\n*DefaultApi* | [**listConferences**](docs/Api/DefaultApi.md#listconferences) | **GET** /Accounts/{accountId}/Conferences | List Conferences\n*DefaultApi* | [**listIncomingNumbers**](docs/Api/DefaultApi.md#listincomingnumbers) | **GET** /Accounts/{accountId}/IncomingPhoneNumbers | List Incoming Numbers\n*DefaultApi* | [**listMembers**](docs/Api/DefaultApi.md#listmembers) | **GET** /Accounts/{accountId}/Queues/{queueId}/Members | List Members\n*DefaultApi* | [**listParticipants**](docs/Api/DefaultApi.md#listparticipants) | **GET** /Accounts/{accountId}/Conferences/{conferenceId}/Participants | List Participants\n*DefaultApi* | [**listRecordings**](docs/Api/DefaultApi.md#listrecordings) | **GET** /Accounts/{accountId}/Recordings | List Recordings\n*DefaultApi* | [**listSmsMessages**](docs/Api/DefaultApi.md#listsmsmessages) | **GET** /Accounts/{accountId}/Messages | List SMS Messages\n*DefaultApi* | [**makeACall**](docs/Api/DefaultApi.md#makeacall) | **POST** /Accounts/{accountId}/Calls | Make a Call\n*DefaultApi* | [**makeAWebrtcJwt**](docs/Api/DefaultApi.md#makeawebrtcjwt) | **POST** /Accounts/{accountId}/Calls/WebRTC/Token | Make a JWT for WebRTC calling\n*DefaultApi* | [**removeAParticipant**](docs/Api/DefaultApi.md#removeaparticipant) | **DELETE** /Accounts/{accountId}/Conferences/{conferenceId}/Participants/{callId} | Remove a Participant\n*DefaultApi* | [**sendAnSmsMessage**](docs/Api/DefaultApi.md#sendansmsmessage) | **POST** /Accounts/{accountId}/Messages | Send an SMS Message\n*DefaultApi* | [**streamARecordingFile**](docs/Api/DefaultApi.md#streamarecordingfile) | **GET** /Accounts/{accountId}/Recordings/{recordingId}/Stream | Stream a Recording File\n*DefaultApi* | [**updateAConference**](docs/Api/DefaultApi.md#updateaconference) | **POST** /Accounts/{accountId}/Conferences/{conferenceId} | Update a Conference\n*DefaultApi* | [**updateALiveCall**](docs/Api/DefaultApi.md#updatealivecall) | **POST** /Accounts/{accountId}/Calls/{callId} | Update a Live Call\n*DefaultApi* | [**updateAParticipant**](docs/Api/DefaultApi.md#updateaparticipant) | **POST** /Accounts/{accountId}/Conferences/{conferenceId}/Participants/{callId} | Update a Participant\n*DefaultApi* | [**updateAQueue**](docs/Api/DefaultApi.md#updateaqueue) | **POST** /Accounts/{accountId}/Queues/{queueId} | Update a Queue\n*DefaultApi* | [**updateAnAccount**](docs/Api/DefaultApi.md#updateanaccount) | **POST** /Accounts/{accountId} | Manage an account\n*DefaultApi* | [**updateAnApplication**](docs/Api/DefaultApi.md#updateanapplication) | **POST** /Accounts/{accountId}/Applications/{applicationId} | Update an application\n*DefaultApi* | [**updateAnIncomingNumber**](docs/Api/DefaultApi.md#updateanincomingnumber) | **POST** /Accounts/{accountId}/IncomingPhoneNumbers/{phoneNumberId} | Update an Incoming Number\n\n## Models\n\n- [AccountRequest](docs/Model/AccountRequest.md)\n- [AccountResult](docs/Model/AccountResult.md)\n- [AccountStatus](docs/Model/AccountStatus.md)\n- [AccountType](docs/Model/AccountType.md)\n- [AddToConference](docs/Model/AddToConference.md)\n- [AddToConferenceNotificationWebhook](docs/Model/AddToConferenceNotificationWebhook.md)\n- [AddToQueueNotificationWebhook](docs/Model/AddToQueueNotificationWebhook.md)\n- [AnsweredBy](docs/Model/AnsweredBy.md)\n- [ApplicationList](docs/Model/ApplicationList.md)\n- [ApplicationRequest](docs/Model/ApplicationRequest.md)\n- [ApplicationResult](docs/Model/ApplicationResult.md)\n- [AvailableNumber](docs/Model/AvailableNumber.md)\n- [AvailableNumberList](docs/Model/AvailableNumberList.md)\n- [BargeInReason](docs/Model/BargeInReason.md)\n- [BuyIncomingNumberRequest](docs/Model/BuyIncomingNumberRequest.md)\n- [CallControlWebhook](docs/Model/CallControlWebhook.md)\n- [CallDirection](docs/Model/CallDirection.md)\n- [CallEndedReason](docs/Model/CallEndedReason.md)\n- [CallList](docs/Model/CallList.md)\n- [CallResult](docs/Model/CallResult.md)\n- [CallStatus](docs/Model/CallStatus.md)\n- [CallStatusWebhook](docs/Model/CallStatusWebhook.md)\n- [Capabilities](docs/Model/Capabilities.md)\n- [CompletionRequest](docs/Model/CompletionRequest.md)\n- [CompletionResult](docs/Model/CompletionResult.md)\n- [CompletionResultStatus](docs/Model/CompletionResultStatus.md)\n- [ConferenceList](docs/Model/ConferenceList.md)\n- [ConferenceParticipantList](docs/Model/ConferenceParticipantList.md)\n- [ConferenceParticipantResult](docs/Model/ConferenceParticipantResult.md)\n- [ConferenceRecordingStatusWebhook](docs/Model/ConferenceRecordingStatusWebhook.md)\n- [ConferenceResult](docs/Model/ConferenceResult.md)\n- [ConferenceStatus](docs/Model/ConferenceStatus.md)\n- [ConferenceStatusWebhook](docs/Model/ConferenceStatusWebhook.md)\n- [CreateConference](docs/Model/CreateConference.md)\n- [CreateConferenceRequest](docs/Model/CreateConferenceRequest.md)\n- [CreateConferenceWebhook](docs/Model/CreateConferenceWebhook.md)\n- [CreateWebRTCToken](docs/Model/CreateWebRTCToken.md)\n- [Dequeue](docs/Model/Dequeue.md)\n- [DequeueWebhook](docs/Model/DequeueWebhook.md)\n- [Enqueue](docs/Model/Enqueue.md)\n- [FilterLogsRequest](docs/Model/FilterLogsRequest.md)\n- [GetDigits](docs/Model/GetDigits.md)\n- [GetDigitsReason](docs/Model/GetDigitsReason.md)\n- [GetDigitsWebhook](docs/Model/GetDigitsWebhook.md)\n- [GetSpeech](docs/Model/GetSpeech.md)\n- [GetSpeechReason](docs/Model/GetSpeechReason.md)\n- [GetSpeechWebhook](docs/Model/GetSpeechWebhook.md)\n- [GrammarFileBuiltIn](docs/Model/GrammarFileBuiltIn.md)\n- [GrammarType](docs/Model/GrammarType.md)\n- [Hangup](docs/Model/Hangup.md)\n- [IfMachine](docs/Model/IfMachine.md)\n- [InboundCallWebhook](docs/Model/InboundCallWebhook.md)\n- [IncomingNumberList](docs/Model/IncomingNumberList.md)\n- [IncomingNumberRequest](docs/Model/IncomingNumberRequest.md)\n- [IncomingNumberResult](docs/Model/IncomingNumberResult.md)\n- [Language](docs/Model/Language.md)\n- [LeaveConferenceWebhook](docs/Model/LeaveConferenceWebhook.md)\n- [LogLevel](docs/Model/LogLevel.md)\n- [LogList](docs/Model/LogList.md)\n- [LogResult](docs/Model/LogResult.md)\n- [MachineDetectedWebhook](docs/Model/MachineDetectedWebhook.md)\n- [MachineType](docs/Model/MachineType.md)\n- [MakeCallRequest](docs/Model/MakeCallRequest.md)\n- [MessageDeliveryWebhook](docs/Model/MessageDeliveryWebhook.md)\n- [MessageDirection](docs/Model/MessageDirection.md)\n- [MessageRequest](docs/Model/MessageRequest.md)\n- [MessageResult](docs/Model/MessageResult.md)\n- [MessageStatus](docs/Model/MessageStatus.md)\n- [MessageStatusWebhook](docs/Model/MessageStatusWebhook.md)\n- [MessagesList](docs/Model/MessagesList.md)\n- [MutableResourceModel](docs/Model/MutableResourceModel.md)\n- [OutDial](docs/Model/OutDial.md)\n- [OutDialApiConnectWebhook](docs/Model/OutDialApiConnectWebhook.md)\n- [OutDialConnectWebhook](docs/Model/OutDialConnectWebhook.md)\n- [OutDialStartWebhook](docs/Model/OutDialStartWebhook.md)\n- [PaginationModel](docs/Model/PaginationModel.md)\n- [Park](docs/Model/Park.md)\n- [Pause](docs/Model/Pause.md)\n- [PerclCommand](docs/Model/PerclCommand.md)\n- [PerclScript](docs/Model/PerclScript.md)\n- [Play](docs/Model/Play.md)\n- [PlayBeep](docs/Model/PlayBeep.md)\n- [PlayEarlyMedia](docs/Model/PlayEarlyMedia.md)\n- [QueueList](docs/Model/QueueList.md)\n- [QueueMember](docs/Model/QueueMember.md)\n- [QueueMemberList](docs/Model/QueueMemberList.md)\n- [QueueRequest](docs/Model/QueueRequest.md)\n- [QueueResult](docs/Model/QueueResult.md)\n- [QueueResultStatus](docs/Model/QueueResultStatus.md)\n- [QueueWaitWebhook](docs/Model/QueueWaitWebhook.md)\n- [RecordUtterance](docs/Model/RecordUtterance.md)\n- [RecordUtteranceTermReason](docs/Model/RecordUtteranceTermReason.md)\n- [RecordWebhook](docs/Model/RecordWebhook.md)\n- [RecordingList](docs/Model/RecordingList.md)\n- [RecordingResult](docs/Model/RecordingResult.md)\n- [Redirect](docs/Model/Redirect.md)\n- [RedirectWebhook](docs/Model/RedirectWebhook.md)\n- [Reject](docs/Model/Reject.md)\n- [RemoveFromConference](docs/Model/RemoveFromConference.md)\n- [RemoveFromQueueNotificationWebhook](docs/Model/RemoveFromQueueNotificationWebhook.md)\n- [RequestType](docs/Model/RequestType.md)\n- [SMSTenDLCBrand](docs/Model/SMSTenDLCBrand.md)\n- [SMSTenDLCBrandAltBusinessIdType](docs/Model/SMSTenDLCBrandAltBusinessIdType.md)\n- [SMSTenDLCBrandEntityType](docs/Model/SMSTenDLCBrandEntityType.md)\n- [SMSTenDLCBrandIdentityStatus](docs/Model/SMSTenDLCBrandIdentityStatus.md)\n- [SMSTenDLCBrandRelationship](docs/Model/SMSTenDLCBrandRelationship.md)\n- [SMSTenDLCBrandStockExchange](docs/Model/SMSTenDLCBrandStockExchange.md)\n- [SMSTenDLCBrandsListResult](docs/Model/SMSTenDLCBrandsListResult.md)\n- [SMSTenDLCCampaign](docs/Model/SMSTenDLCCampaign.md)\n- [SMSTenDLCCampaignStatus](docs/Model/SMSTenDLCCampaignStatus.md)\n- [SMSTenDLCCampaignsListResult](docs/Model/SMSTenDLCCampaignsListResult.md)\n- [SMSTenDLCPartnerCampaign](docs/Model/SMSTenDLCPartnerCampaign.md)\n- [SMSTenDLCPartnerCampaignBrand](docs/Model/SMSTenDLCPartnerCampaignBrand.md)\n- [SMSTenDLCPartnerCampaignStatus](docs/Model/SMSTenDLCPartnerCampaignStatus.md)\n- [SMSTenDLCPartnerCampaignsListResult](docs/Model/SMSTenDLCPartnerCampaignsListResult.md)\n- [SMSTollFreeCampaign](docs/Model/SMSTollFreeCampaign.md)\n- [SMSTollFreeCampaignRegistrationStatus](docs/Model/SMSTollFreeCampaignRegistrationStatus.md)\n- [SMSTollFreeCampaignsListResult](docs/Model/SMSTollFreeCampaignsListResult.md)\n- [Say](docs/Model/Say.md)\n- [SendDigits](docs/Model/SendDigits.md)\n- [SetDTMFPassThrough](docs/Model/SetDTMFPassThrough.md)\n- [SetListen](docs/Model/SetListen.md)\n- [SetTalk](docs/Model/SetTalk.md)\n- [Sms](docs/Model/Sms.md)\n- [StartRecordCall](docs/Model/StartRecordCall.md)\n- [TFN](docs/Model/TFN.md)\n- [TFNCampaign](docs/Model/TFNCampaign.md)\n- [TerminateConference](docs/Model/TerminateConference.md)\n- [TranscribeReason](docs/Model/TranscribeReason.md)\n- [TranscribeTermReason](docs/Model/TranscribeTermReason.md)\n- [TranscribeUtterance](docs/Model/TranscribeUtterance.md)\n- [TranscribeUtteranceRecord](docs/Model/TranscribeUtteranceRecord.md)\n- [TranscribeWebhook](docs/Model/TranscribeWebhook.md)\n- [Unpark](docs/Model/Unpark.md)\n- [UpdateCallRequest](docs/Model/UpdateCallRequest.md)\n- [UpdateCallRequestStatus](docs/Model/UpdateCallRequestStatus.md)\n- [UpdateConferenceParticipantRequest](docs/Model/UpdateConferenceParticipantRequest.md)\n- [UpdateConferenceRequest](docs/Model/UpdateConferenceRequest.md)\n- [UpdateConferenceRequestStatus](docs/Model/UpdateConferenceRequestStatus.md)\n- [Webhook](docs/Model/Webhook.md)\n\n## Authorization\n\nAuthentication schemes defined for the API:\n### fc\n\n- **Type**: HTTP basic authentication\n\n## Tests\n\nTo run the tests, use:\n\n```bash\ncomposer install\nvendor/bin/phpunit\n```\n\n## Author\n\nsupport@freeclimb.com\n\n## About this package\n\nThis PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: `1.0.0`\n    - Package version: `5.1.1`\n    - Generator version: `7.9.0`\n- Build package: `org.openapitools.codegen.languages.PhpClientCodegen`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreeclimbapi%2Fphp-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffreeclimbapi%2Fphp-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreeclimbapi%2Fphp-sdk/lists"}