CallfireApiClient.Api.Campaigns.CampaignSoundsApi.Find C# (CSharp) Method

Find() public method

Find all campaign sounds that were created by the user. These are all of the available sounds to be used in campaigns.
in case HTTP response code is 400 - Bad request, the request was formatted improperly. in case HTTP response code is 401 - Unauthorized, API Key missing or invalid. in case HTTP response code is 403 - Forbidden, insufficient permissions. in case HTTP response code is 404 - NOT FOUND, the resource requested does not exist. in case HTTP response code is 500 - Internal Server Error. in case HTTP response code is something different from codes listed above. in case error has occurred in client.
public Find ( FindSoundsRequest request ) : Page
request CallfireApiClient.Api.CallsTexts.Model.Request.FindSoundsRequest request object with different fields for search
return Page
        public Page<CampaignSound> Find(FindSoundsRequest request)
        {
            return Client.Get<Page<CampaignSound>>(SOUNDS_PATH, request);
        }