Retrieve a Powerpack
Retrieves the details of a Powerpack resource.
API Endpoint
GET
https://api.plivo.com/v1/Account/{auth_id}/Powerpack/{powerpack_uuid}/
Arguments
No arguments need to be passed.
Returns
This API call returns the details of the Powerpack resource identified by the powerpack_uuid
specified in the request URL.
Response
HTTP Status Code: 200
{
"uuid": "dfsd-fsdfsd-345dfsd-fsdfs-sdfsd",
"name": "My Powerpack",
"smart_sender": true,
"local_connect": false,
"application_type": "XML",
"application_id": 123912833468,
"number_pool": "/Account/MAXXXXXXXXXXXXXXXXXX/NumberPool/<numberpool_uuid>",
"created_on": "2019-07-15T12:22:00Z"
}
Example Request
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='your-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("your_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:"your_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
package main
import (
"fmt"
plivo "github.com/plivo/plivo-go"
)
func main() {
client, err := plivo.NewClient("auth_id", "auth_token", &plivo.ClientOptions{})
if err != nil {
panic(err)
}
response, err := client.Powerpack.Get("powerpack_uuid")
if err != nil {
panic(err)
}
fmt.Printf("Response: %#v\n", response)
}
Rate this page
🥳 Thank you! It means a lot to us!
×
Help Us Improve
Thank you so much for rating the page, we would like to get your input for further improvements!
Subscribe to Updates
Thank you for your feedback!