Dnsimple.Services.applied_services
You're seeing just the function
applied_services
, go back to Dnsimple.Services module for more information.
Link to this function
applied_services(client, account_id, domain_id, options \\ [])
Specs
applied_services( Dnsimple.Client.t(), String.t() | integer(), String.t() | integer(), Keyword.t() ) :: {:ok | :error, Dnsimple.Response.t()}
Lists the one-click services already applied to a domain.
See:
Examples:
client = %Dnsimple.Client{access_token: "a1b2c3d4"}
{:ok, response} = Dnsimple.Services.applied_services(client, account_id = 1010, domain_id = "example.com")
{:ok, response} = Dnsimple.Services.applied_services(client, account_id = 1010, domain_id = "example.com", page: 2)