Retrieves the details of a Powerpack resource.
GET
https://api.plivo.com/v1/Account/{auth_id}/Powerpack/{powerpack_uuid}/
This API call returns the details of the Powerpack resource identified by the powerpack_uuid
specified in the request URL.
HTTP Status Code: 200
{
"api_id":"8b583f08-ae57-11eb-8840-0242ac110003",
"application_id":"",
"application_type":"",
"created_on":"2020-09-23T09:31:25.924044Z",
"local_connect":true,
"name":"<powerpack_name>",
"number_pool":"/v1/Account/<power_uuid>/NumberPool/<numberpool_id>/",
"number_priority":[
{
"country_iso":"US",
"priority":{
"priority1":"shortcode",
"priority2":"tollfree",
"priority3":"longcode"
},
"service_type":"MMS"
},
{
"country_iso":"CA",
"priority":{
"priority1":"shortcode",
"priority2":"tollfree",
"priority3":"longcode"
},
"service_type":"SMS"
},
{
"country_iso":"US",
"priority":{
"priority1":"shortcode",
"priority2":"longcode",
"priority3":"tollfree"
},
"service_type":"SMS"
},
{
"country_iso":"CA",
"priority":{
"priority1":"longcode",
"priority2":"tollfree",
"priority3":"shortcode"
},
"service_type":"MMS"
}
],
"sticky_sender":true,
"uuid":"<powerpack_uuid>"
}
1
2
3
4
5
6
import plivo
import json
client = plivo.RestClient('<auth_id>','<auth_token>')
powerpack = client.powerpacks.get(uuid="<powerpack_uuid>")
print str(powerpack)
1
2
3
4
5
6
7
8
9
10
11
12
require 'rubygems'
require 'plivo'
include Plivo
include Plivo::Exceptions
api = RestClient.new("<auth_id>","<auth_token>")
begin
response=api.powerpacks.get(uuid='<powerpack_uuid>')
puts response
rescue PlivoRESTError => e
puts 'Exception: ' + e.message
end
1
2
3
4
5
6
7
8
9
10
var plivo = require('plivo');
var client = new plivo.Client("<auth_id>","<auth_token>");
client.powerpacks.get("<powerpack_uuid>")
.then(function (result) {
console.log(result)
})
.catch(function (response) {
console.log(response);
});
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
require 'vendor/autoload.php';
use Plivo\RestClient;
$client = new RestClient("<auth_id>","<auth_token>");
$client->client->setTimeout(40);
try {
$powerpack = $client->powerpacks->get("<powerpack_uuid>");
print_r($powerpack);
}
catch (PlivoRestException $ex) {
print_r($ex);
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.plivo.api;
import com.plivo.api.models.powerpack.Powerpack;
import com.plivo.api.exceptions.PlivoRestException;
import java.io.IOException;
public class PowerpackTest {
public static void main(String[] args) {
Plivo.init("<auth_id>", "<auth_token>");
try {
Powerpack powerpack = Powerpack.getter("<powerpack_uuid>").get();
System.out.println(powerpack);
}
catch ( PlivoRestException | IOException e ) {
e.printStackTrace();
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using Plivo;
using Plivo.Exception;
using System.Collections.Generic;
namespace test_apps
{
class Program
{
static void Main(string[] args)
{
var api = new PlivoApi("<auth_id>","<auth_token>");
try
{
var response = api.Powerpacks.Create(name:"<powerpack_name>", sticky_sender:true);
Console.WriteLine(response);
}
catch (PlivoRestException e)
{
Console.WriteLine("Exception: " + e.Message);
}
}
}
}
1
2
3
curl -X GET -i --user auth_id:auth_token \
-H "Content-Type: application/json" \
https://api.plivo.com/v1/Account/{auth_id}/Powerpack/{powerpack_uuid}/
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package main
import (
"fmt"
plivo "github.com/plivo/plivo-go/v7"
)
func main() {
client, err := plivo.NewClient("<auth_id>", "<auth_token>", &plivo.ClientOptions{})
if err != nil {
fmt.Print("Error", err.Error())
return
}
response, err := client.Powerpack.Get("<powerpack_uuid>")
if err != nil {
fmt.Print("Error", err.Error())
return
}
fmt.Printf("Response: %#v\n", response)
}