admin
/api/v1/admin/participant (POST)
POST
/api/v1/admin/participant
const url = 'https://dpg.example.com/api/v1/admin/participant';const options = { method: 'POST', headers: { 'x-acting-org-id': 'example', 'x-api-key': '<x-api-key>', 'Content-Type': 'application/json' }, body: '{"email":"hello@example.com","phone_number":"example","name":"example","date_of_birth":"2026-04-15","terms_accepted":true,"privacy_accepted":true,"channel":"bulk","source_id":"example","item_state":{"additionalProperty":"example"},"item_id":"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0","network":"example","domain":"example","item_type":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://dpg.example.com/api/v1/admin/participant \ --header 'Content-Type: application/json' \ --header 'x-acting-org-id: example' \ --header 'x-api-key: <x-api-key>' \ --data '{ "email": "hello@example.com", "phone_number": "example", "name": "example", "date_of_birth": "2026-04-15", "terms_accepted": true, "privacy_accepted": true, "channel": "bulk", "source_id": "example", "item_state": { "additionalProperty": "example" }, "item_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "network": "example", "domain": "example", "item_type": "example" }'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Header Parameters
Section titled “Header Parameters”x-acting-org-id
required
string
Organization this request acts on behalf of. Required for admin/aggregator operations.
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
email
string format: email
phone_number
string
name
required
string
terms_accepted
required
boolean
privacy_accepted
required
boolean
channel
required
string
source_id
string
item_state
Payload written to the items table; if absent OR an empty object {}, the route enters account_only mode (only the user is created/looked up, no item is written).
object
key
additional properties
item_id
UUID. Only meaningful when acting_org is network_service AND user already exists. Targets that specific item for a PATCH-style update. Ignored otherwise.
string format: uuid
network
Network id (default: ‘blue_dot’). Set when this Signals instance serves a different network.
string
domain
Domain within the network (default: ‘seeker’).
string
item_type
Schema-typed item_type for the item (default: ‘profile_1.0’).
string
Responses
Section titled “Responses”Default Response
Media typeapplication/json
object
user_id
required
string
user_existed
required
boolean
owned_elsewhere
required
boolean
onboarded_at
required
string format: date-time
items
required
Array<object>
object
item_id
required
string format: uuid
item_network
required
string
item_domain
required
string
item_type
required
string
item_state
required
object
key
additional properties
item_locations
required
Array<object>
object
lat
required
number
lng
required
number
label
string
created_at
required
string format: date-time
updated_at
required
string format: date-time
Examplegenerated
{ "user_id": "example", "user_existed": true, "owned_elsewhere": true, "onboarded_at": "2026-04-15T12:00:00Z", "items": [ { "item_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "item_network": "example", "item_domain": "example", "item_type": "example", "item_state": { "additionalProperty": "example" }, "item_locations": [ { "lat": 1, "lng": 1, "label": "example" } ], "created_at": "2026-04-15T12:00:00Z", "updated_at": "2026-04-15T12:00:00Z" } ]}
