Admisiones
Sincronizar por id externo
cURL
curl --request PUT \
--url https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"givenNames": "<string>",
"familyNames": "<string>",
"country": "<string>",
"city": "<string>",
"programId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"program": "",
"email": "jsmith@example.com",
"phone": "<string>",
"stateProvince": "<string>",
"address": "<string>",
"academicYear": "<string>",
"academicPeriod": "<string>",
"status": "<string>",
"primaryContact": {
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"displayName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"relationshipLabel": "<string>",
"isPrimary": true,
"metadata": {}
},
"contacts": [
{
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"displayName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"relationshipLabel": "<string>",
"isPrimary": true,
"metadata": {}
}
]
}
'import requests
url = "https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}"
payload = {
"givenNames": "<string>",
"familyNames": "<string>",
"country": "<string>",
"city": "<string>",
"programId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"program": "",
"email": "jsmith@example.com",
"phone": "<string>",
"stateProvince": "<string>",
"address": "<string>",
"academicYear": "<string>",
"academicPeriod": "<string>",
"status": "<string>",
"primaryContact": {
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"displayName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"relationshipLabel": "<string>",
"isPrimary": True,
"metadata": {}
},
"contacts": [
{
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"displayName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"relationshipLabel": "<string>",
"isPrimary": True,
"metadata": {}
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
givenNames: '<string>',
familyNames: '<string>',
country: '<string>',
city: '<string>',
programId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
program: '',
email: 'jsmith@example.com',
phone: '<string>',
stateProvince: '<string>',
address: '<string>',
academicYear: '<string>',
academicPeriod: '<string>',
status: '<string>',
primaryContact: {
contactId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
displayName: '<string>',
email: 'jsmith@example.com',
phone: '<string>',
relationshipLabel: '<string>',
isPrimary: true,
metadata: {}
},
contacts: [
{
contactId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
displayName: '<string>',
email: 'jsmith@example.com',
phone: '<string>',
relationshipLabel: '<string>',
isPrimary: true,
metadata: {}
}
]
})
};
fetch('https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}', 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://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'givenNames' => '<string>',
'familyNames' => '<string>',
'country' => '<string>',
'city' => '<string>',
'programId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'program' => '',
'email' => 'jsmith@example.com',
'phone' => '<string>',
'stateProvince' => '<string>',
'address' => '<string>',
'academicYear' => '<string>',
'academicPeriod' => '<string>',
'status' => '<string>',
'primaryContact' => [
'contactId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'displayName' => '<string>',
'email' => 'jsmith@example.com',
'phone' => '<string>',
'relationshipLabel' => '<string>',
'isPrimary' => true,
'metadata' => [
]
],
'contacts' => [
[
'contactId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'displayName' => '<string>',
'email' => 'jsmith@example.com',
'phone' => '<string>',
'relationshipLabel' => '<string>',
'isPrimary' => true,
'metadata' => [
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}"
payload := strings.NewReader("{\n \"givenNames\": \"<string>\",\n \"familyNames\": \"<string>\",\n \"country\": \"<string>\",\n \"city\": \"<string>\",\n \"programId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"program\": \"\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"stateProvince\": \"<string>\",\n \"address\": \"<string>\",\n \"academicYear\": \"<string>\",\n \"academicPeriod\": \"<string>\",\n \"status\": \"<string>\",\n \"primaryContact\": {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n },\n \"contacts\": [\n {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n }\n ]\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"givenNames\": \"<string>\",\n \"familyNames\": \"<string>\",\n \"country\": \"<string>\",\n \"city\": \"<string>\",\n \"programId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"program\": \"\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"stateProvince\": \"<string>\",\n \"address\": \"<string>\",\n \"academicYear\": \"<string>\",\n \"academicPeriod\": \"<string>\",\n \"status\": \"<string>\",\n \"primaryContact\": {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n },\n \"contacts\": [\n {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"givenNames\": \"<string>\",\n \"familyNames\": \"<string>\",\n \"country\": \"<string>\",\n \"city\": \"<string>\",\n \"programId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"program\": \"\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"stateProvince\": \"<string>\",\n \"address\": \"<string>\",\n \"academicYear\": \"<string>\",\n \"academicPeriod\": \"<string>\",\n \"status\": \"<string>\",\n \"primaryContact\": {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n },\n \"contacts\": [\n {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"externalId": "<string>",
"applicationCode": "<string>",
"fullName": "<string>",
"programId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"program": "<string>",
"programRef": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"educationLevel": "<string>",
"organizationProfile": "<string>",
"status": "<string>"
},
"status": "<string>",
"givenNames": "<string>",
"familyNames": "<string>",
"email": "<string>",
"phone": "<string>",
"country": "<string>",
"stateProvince": "<string>",
"city": "<string>",
"address": "<string>",
"academicYear": "<string>",
"academicPeriod": "<string>",
"photoUrl": "<string>",
"studentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"primaryContact": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"role": "applicant",
"relationshipLabel": "<string>",
"isPrimary": true,
"source": "manual",
"displayName": "<string>",
"email": "<string>",
"phone": "<string>",
"metadata": {},
"createdAt": "<string>",
"updatedAt": "<string>"
},
"contacts": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"role": "applicant",
"relationshipLabel": "<string>",
"isPrimary": true,
"source": "manual",
"displayName": "<string>",
"email": "<string>",
"phone": "<string>",
"metadata": {},
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"createdAt": "<string>",
"updatedAt": "<string>"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Required string length:
1 - 160Body
application/json
Required string length:
1 - 255Required string length:
1 - 255Required string length:
1 - 100Required string length:
1 - 100Maximum string length:
255Maximum string length:
40Maximum string length:
100Maximum string length:
2000Maximum string length:
50Maximum string length:
50Required string length:
2 - 64Pattern:
^[a-z][a-z0-9_-]*$Show child attributes
Show child attributes
Maximum array length:
10Show child attributes
Show child attributes
Response
200 - application/json
Upserted admission application
Show child attributes
Show child attributes
Was this page helpful?
cURL
curl --request PUT \
--url https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"givenNames": "<string>",
"familyNames": "<string>",
"country": "<string>",
"city": "<string>",
"programId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"program": "",
"email": "jsmith@example.com",
"phone": "<string>",
"stateProvince": "<string>",
"address": "<string>",
"academicYear": "<string>",
"academicPeriod": "<string>",
"status": "<string>",
"primaryContact": {
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"displayName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"relationshipLabel": "<string>",
"isPrimary": true,
"metadata": {}
},
"contacts": [
{
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"displayName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"relationshipLabel": "<string>",
"isPrimary": true,
"metadata": {}
}
]
}
'import requests
url = "https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}"
payload = {
"givenNames": "<string>",
"familyNames": "<string>",
"country": "<string>",
"city": "<string>",
"programId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"program": "",
"email": "jsmith@example.com",
"phone": "<string>",
"stateProvince": "<string>",
"address": "<string>",
"academicYear": "<string>",
"academicPeriod": "<string>",
"status": "<string>",
"primaryContact": {
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"displayName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"relationshipLabel": "<string>",
"isPrimary": True,
"metadata": {}
},
"contacts": [
{
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"displayName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"relationshipLabel": "<string>",
"isPrimary": True,
"metadata": {}
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
givenNames: '<string>',
familyNames: '<string>',
country: '<string>',
city: '<string>',
programId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
program: '',
email: 'jsmith@example.com',
phone: '<string>',
stateProvince: '<string>',
address: '<string>',
academicYear: '<string>',
academicPeriod: '<string>',
status: '<string>',
primaryContact: {
contactId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
displayName: '<string>',
email: 'jsmith@example.com',
phone: '<string>',
relationshipLabel: '<string>',
isPrimary: true,
metadata: {}
},
contacts: [
{
contactId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
displayName: '<string>',
email: 'jsmith@example.com',
phone: '<string>',
relationshipLabel: '<string>',
isPrimary: true,
metadata: {}
}
]
})
};
fetch('https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}', 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://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'givenNames' => '<string>',
'familyNames' => '<string>',
'country' => '<string>',
'city' => '<string>',
'programId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'program' => '',
'email' => 'jsmith@example.com',
'phone' => '<string>',
'stateProvince' => '<string>',
'address' => '<string>',
'academicYear' => '<string>',
'academicPeriod' => '<string>',
'status' => '<string>',
'primaryContact' => [
'contactId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'displayName' => '<string>',
'email' => 'jsmith@example.com',
'phone' => '<string>',
'relationshipLabel' => '<string>',
'isPrimary' => true,
'metadata' => [
]
],
'contacts' => [
[
'contactId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'displayName' => '<string>',
'email' => 'jsmith@example.com',
'phone' => '<string>',
'relationshipLabel' => '<string>',
'isPrimary' => true,
'metadata' => [
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}"
payload := strings.NewReader("{\n \"givenNames\": \"<string>\",\n \"familyNames\": \"<string>\",\n \"country\": \"<string>\",\n \"city\": \"<string>\",\n \"programId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"program\": \"\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"stateProvince\": \"<string>\",\n \"address\": \"<string>\",\n \"academicYear\": \"<string>\",\n \"academicPeriod\": \"<string>\",\n \"status\": \"<string>\",\n \"primaryContact\": {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n },\n \"contacts\": [\n {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n }\n ]\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"givenNames\": \"<string>\",\n \"familyNames\": \"<string>\",\n \"country\": \"<string>\",\n \"city\": \"<string>\",\n \"programId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"program\": \"\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"stateProvince\": \"<string>\",\n \"address\": \"<string>\",\n \"academicYear\": \"<string>\",\n \"academicPeriod\": \"<string>\",\n \"status\": \"<string>\",\n \"primaryContact\": {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n },\n \"contacts\": [\n {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.edtools.co/api/client/v1/admissions/applications/external/{externalId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"givenNames\": \"<string>\",\n \"familyNames\": \"<string>\",\n \"country\": \"<string>\",\n \"city\": \"<string>\",\n \"programId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"program\": \"\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"stateProvince\": \"<string>\",\n \"address\": \"<string>\",\n \"academicYear\": \"<string>\",\n \"academicPeriod\": \"<string>\",\n \"status\": \"<string>\",\n \"primaryContact\": {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n },\n \"contacts\": [\n {\n \"contactId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"displayName\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"phone\": \"<string>\",\n \"relationshipLabel\": \"<string>\",\n \"isPrimary\": true,\n \"metadata\": {}\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"externalId": "<string>",
"applicationCode": "<string>",
"fullName": "<string>",
"programId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"program": "<string>",
"programRef": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"educationLevel": "<string>",
"organizationProfile": "<string>",
"status": "<string>"
},
"status": "<string>",
"givenNames": "<string>",
"familyNames": "<string>",
"email": "<string>",
"phone": "<string>",
"country": "<string>",
"stateProvince": "<string>",
"city": "<string>",
"address": "<string>",
"academicYear": "<string>",
"academicPeriod": "<string>",
"photoUrl": "<string>",
"studentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"primaryContact": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"role": "applicant",
"relationshipLabel": "<string>",
"isPrimary": true,
"source": "manual",
"displayName": "<string>",
"email": "<string>",
"phone": "<string>",
"metadata": {},
"createdAt": "<string>",
"updatedAt": "<string>"
},
"contacts": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"contactId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"role": "applicant",
"relationshipLabel": "<string>",
"isPrimary": true,
"source": "manual",
"displayName": "<string>",
"email": "<string>",
"phone": "<string>",
"metadata": {},
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"createdAt": "<string>",
"updatedAt": "<string>"
}
}