Retrieve a specific profile
This API lets you fetch details about a specific profile_id associated with your account.
API Endpoint
GET
https://api.plivo.com/v1/Account/{auth_id}/Profile/{profile_uuid}
Arguments
No arguments need to be passed.
Returns
api_id & the profile object identified by the profile_id specified in the request URL.
Response
HTTP Status Code: 200
{
"api_id": "752e99d0-baf3-11ec-ac74-0242ac110002",
"profile": {
"address": {
"city": "New York",
"country": "US",
"postal_code": "10001",
"state": "NY",
"street": "123"
},
"alt_business_id": "ABC",
"alt_business_id_type": "DUNS",
"authorized_contact": {
"email": "john@example.com",
"first_name": "john",
"last_name": "doe",
"phone": "14156667777",
"seniority": "admin",
"title": "Doe"
},
"company_name": "ABC Inc.12345",
"customer_type": "RESELLER",
"ein": "122321231",
"ein_issuing_country": "US",
"entity_type": "PUBLIC",
"plivo_subaccount": "SAXXXXXXXXXXXXXXXXMM",
"primary_profile": "c780f9d0-e3c9-4d13-87f7-b898654569b0",
"profile_alias": "john_doe",
"profile_type": "SECONDARY",
"profile_uuid": "f19c4773-4ae6-4b75-92ea-9cf3ea4227d6",
"stock_exchange": "NYSE",
"stock_symbol": "TESLA",
"vertical": "ENTERTAINMENT",
"website": "hibye.com"
}
}
1
2
3
4
5
6
7
8
9
10
11
12
// Available in versions >= 4.30.0 (https://github.com/plivo/plivo-node/releases/tag/v4.30.0)
let plivo = require('plivo');
var client = new plivo.Client("<auth_id>", "<auth_token>");
client.profile.get("<profile_uuid>")
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
# Available in versions >= 4.29.0 (https://github.com/plivo/plivo-php/releases/tag/v4.29.0)
require '/etc/plivo-php/vendor/autoload.php';
use Plivo\RestClient;
$client = new RestClient("<auth_id>", "<auth_token>");
// Get Powerpack
$client
->client
->setTimeout(60);
try
{
// $res = $client->profile->list();
$res = $client
->profile
->get("<profile_uuid>");
print_r($res);
}
catch(PlivoRestException $ex)
{
print_r($ex);
}
?>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Available in versions >= 5.9.0 (https://github.com/plivo/plivo-dotnet/releases/tag/v5.9.0)
using System;
using System.Collections.Generic;
using Plivo;
using Plivo.Exception;
using Plivo.Resource.Profile;
namespace dotnet_project
{
class Ten_dlc
{
static void Main(string[] args)
{
var api = new PlivoApi("<auth_id>","<auth_token>");
// Get a Profile
try
{
var response = api.Profile.Get("f8ca5a50-50b8-438d-8068-28427b1c0e90");
Console.WriteLine(response);
}
catch (PlivoRestException e)
{
Console.WriteLine("Exception: " + e.Message);
}
}
}
}
1
2
curl -i --user auth_id:auth_token \
https://api.plivo.com/v1/Account/{auth_id}/Profile/{profile_uuid}/
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!