Send patient data to CRIO Recruitment API. We handle DOB, phone, and sex formatting automatically - no code nodes needed.
POST /api/crio/send-to-criosandbox → api.np.clinicalresearch.ious → api.clinicalresearch.iocanada → ca.api.clinicalresearch.ioaustralia → au.api.clinicalresearch.ioeurope → eu.api.clinicalresearch.iobearerToken - CRIO API tokenclientId - Your CRIO client IDsiteId - Your CRIO site IDenvironment - sandbox, us, canada, etc.firstName - Patient first namelastName - Patient last nameemail OR phone - At least onedob - Date of birth (MM/DD/YYYY)sex - Male or FemalepostalCode - Postal/zip codehomePhone - Home phoneworkPhone - Work phonestudyId - CRIO study IDsubjectStatus - INTERESTED, ENROLLED, etc.recruitmentStatus - INTERESTED, PROSPECT, etc.patientReferralSourceCategoryKeypatientReferralSourceKey{
"bearerToken": "YOUR_BEARER_TOKEN",
"clientId": "1263",
"siteId": "1541",
"environment": "us",
"firstName": "{{contact.first_name}}",
"lastName": "{{contact.last_name}}",
"email": "{{contact.email}}",
"phone": "{{contact.phone}}",
"postalCode": "{{contact.postal_code}}",
"dob": "{{contact.dob}}",
"sex": "{{contact.sex}}",
"studyId": "128654",
"subjectStatus": "INTERESTED",
"recruitmentStatus": "INTERESTED",
"patientReferralSourceCategoryKey": 5,
"patientReferralSourceKey": 32836
}{
"success": true,
"crioPayload": {
"siteId": "1541",
"patientInfo": {
"status": "AVAILABLE",
"birthDate": "22-APR-1990",
"sex": "FEMALE",
"patientContact": {
"firstName": "Jane",
"lastName": "Doe",
"email": "jane@example.com",
"cellPhone": "555-123-4567",
"postalCode": "90210"
},
"patientReferralSource": {
"patientReferralSourceCategoryKey": 5,
"patientReferralSourceKey": 32836
}
},
"studies": [{
"studyId": "128654",
"subjectStatus": "INTERESTED",
"recruitmentStatus": "INTERESTED"
}]
},
"crioResponse": {
// CRIO API response
}
}curl -X POST https://your-domain.com/api/crio/send-to-crio \
-H "Content-Type: application/json" \
-d '{
"bearerToken": "YOUR_BEARER_TOKEN",
"clientId": "1263",
"siteId": "1541",
"environment": "us",
"firstName": "Jane",
"lastName": "Doe",
"email": "jane@example.com",
"phone": "5551234567",
"postalCode": "90210",
"dob": "04/22/1990",
"sex": "Female",
"studyId": "128654",
"subjectStatus": "INTERESTED",
"recruitmentStatus": "INTERESTED",
"patientReferralSourceCategoryKey": 5,
"patientReferralSourceKey": 32836
}'