Skip to content

Latest commit

 

History

History
83 lines (60 loc) · 2.75 KB

MessagingUrlDomainsApi.md

File metadata and controls

83 lines (60 loc) · 2.75 KB

MessagingUrlDomainsApi

All URIs are relative to https://api.telnyx.com/v2

Method HTTP request Description
listMessagingUrlDomains GET /messaging_url_domains List messaging URL domains

listMessagingUrlDomains

ListMessagingProfileUrlDomainsResponse listMessagingUrlDomains().pageNumber(pageNumber).pageSize(pageSize).execute();

List messaging URL domains

Example

// Import classes:
import com.telnyx.sdk.ApiClient;
import com.telnyx.sdk.ApiException;
import com.telnyx.sdk.Configuration;
import com.telnyx.sdk.auth.*;
import com.telnyx.sdk.model.*;
import com.telnyx.sdk.api.MessagingUrlDomainsApi;

public class Example {
    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        defaultClient.setBasePath("https://api.telnyx.com/v2");
        
        // Configure HTTP bearer authorization: bearerAuth
        HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
        bearerAuth.setBearerToken("BEARER TOKEN");

        MessagingUrlDomainsApi apiInstance = new MessagingUrlDomainsApi(defaultClient);
        Integer pageNumber = 1; // Integer | The page number to load
        Integer pageSize = 20; // Integer | The size of the page
        try {
            ListMessagingProfileUrlDomainsResponse result = api.listMessagingUrlDomains()
                .pageNumber(pageNumber)
                .pageSize(pageSize)
                .execute();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling MessagingUrlDomainsApi#listMessagingUrlDomains");
            System.err.println("Status code: " + e.getCode());
            System.err.println("Reason: " + e.getResponseBody());
            System.err.println("Response headers: " + e.getResponseHeaders());
            e.printStackTrace();
        }
    }
}

Parameters

Name Type Description Notes
pageNumber Integer The page number to load [optional] [default to 1]
pageSize Integer The size of the page [optional] [default to 20]

Return type

ListMessagingProfileUrlDomainsResponse

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful response with details about a messaging URL domain. -
0 Unexpected error -