curl
curl -X GET 'https://verification.didit.me/v3/organization/11111111-2222-3333-4444-555555555555/application/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/networks/n3a5e000-0000-4000-8000-000000000001/members/' \
-H 'x-api-key: YOUR_API_KEY'import requests
url = "https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"results": [
{
"subject": {},
"outcome_status": "<string>",
"node_status": "approved",
"tags": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"source": "subject_tag",
"category": "customer"
}
],
"risk": {
"score": 123,
"band": "low",
"bar": 123
},
"signal_coverage": {},
"shared_infrastructure": {},
"joined_at": "2023-11-07T05:31:56Z",
"last_seen_at": "2023-11-07T05:31:56Z",
"provenance": {
"session_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"business_session_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"transaction_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
}
]
}{
"detail": "<string>"
}Networks
List Network Members
List the subjects (vendor users, vendor businesses, or transaction parties) that belong to this network.
GET
/
v3
/
organization
/
{organization_id}
/
application
/
{application_id}
/
networks
/
{network_uuid}
/
members
/
curl
curl -X GET 'https://verification.didit.me/v3/organization/11111111-2222-3333-4444-555555555555/application/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/networks/n3a5e000-0000-4000-8000-000000000001/members/' \
-H 'x-api-key: YOUR_API_KEY'import requests
url = "https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/networks/{network_uuid}/members/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"results": [
{
"subject": {},
"outcome_status": "<string>",
"node_status": "approved",
"tags": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"source": "subject_tag",
"category": "customer"
}
],
"risk": {
"score": 123,
"band": "low",
"bar": 123
},
"signal_coverage": {},
"shared_infrastructure": {},
"joined_at": "2023-11-07T05:31:56Z",
"last_seen_at": "2023-11-07T05:31:56Z",
"provenance": {
"session_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"business_session_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"transaction_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
}
]
}{
"detail": "<string>"
}
List every subject (vendor user, vendor business, or transaction party) that belongs to this network, with each member’s verification outcome, risk, tags, and the sessions, business sessions, or transactions that placed them in the network.
A member’s
node_status (approved, in_review, declined, not_completed) is that applicant’s own verification outcome. It is separate from the network’s status (active, in_review, resolved, dismissed), which tracks the investigation, not any one member.Related
Authorizations
Path Parameters
Organization UUID.
Application UUID.
Network UUID.
Example:
"n3a5e000-0000-4000-8000-000000000001"
Response
Network members. Not paginated.
Show child attributes
Show child attributes