Get List
Retrieve the meta data for a given list.
INFO
Please note that due to the potential list sizes we are not returning the list content in API responses.
Authorization OAuth 2.0
This request requires OAuth 2.0 authorization.
Header Parameters
Path Parameters
id
List identifier.integerrequired
Response Parameters
data
objectid
integerThe ID of the list, can be used for future API requests to query list details or make updates.
name
stringThe name of the list.
type
stringThe type of list, one of:
AffiliatesBank Routing NumbersEmail AddressesEmployer NamesTelephone NumbersSocial Security NumbersLast Four of Social Security NumbersZIP Codesdeleted_at
datetimeTimestamp of when the list was archived, null if not archived.
created_at
datetimeTimestamp of when the list was created.
updated_at
datetimeTimestamp of when the list was last updated.
GET /api/v1/lead-management/lists/{listId}
sh
curl --request POST \
"https://api.decisioncloud.me/api/v1/list-manager/lists/{LIST_ID}" \
--header "Authorization: Bearer {ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \js
const url = new URL(
"https://api.decisioncloud.me/api/v1/list-manager/lists/{LIST_ID}"
);
const headers = {
"Authorization": "Bearer {ACCESS_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());php
$client = new \GuzzleHttp\Client();
$response = $client->get(
"https://api.decisioncloud.me/api/v1/list-manager/lists/{LIST_ID}",
[
"headers" => [
"Authorization" => "Bearer {ACCESS_TOKEN}",
"Content-Type" => "application/json",
"Accept" => "application/json",
],
],
);
$body = $response->getJson();
print_r($body);py
import requests
import json
url = "https://api.decisioncloud.me/api/v1/list-manager/lists/{LIST_ID}"
headers = {
"Authorization": "Bearer {ACCESS_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json"
}
response = requests.request("GET", url, headers=headers)
response.json()json
{
"data": {
"id": 11,
"name": "SSN List 1",
"type": "Social Security Numbers",
"deleted_at": null,
"created_at": "2025-05-02T19:28:55.000000Z",
"updated_at": "2025-05-02T22:01:12.000000Z"
},
}