Verity API

Verity API Documentation

Introduction

  1. Authorization: use the Authorization method to get a valid token for access to Verity instance
  2. Lead & student record: use this category of methods to request updates to existing lead & student information by Verity Id or External Key (your internal id matched to a Verity Id). With this service, you may issue updates to lead/student statuses, opt-outs/opt-ins, etc.


Overview

  1. Authorization: use the Authorization method to get a valid token for access to Verity instance
  2. Lead & student record: use this category of methods to request updates to existing lead & student information by Verity Id or External Key (your internal id matched to a Verity Id). With this service, you may issue updates to lead/student statuses, opt-outs/opt-ins, etc.


Service Catalog

Method URL Service Headers
Authorization
GET connector/Authorization/GetAuthorizationToken Authorization
Documents
POST connector/Documents/AddStudentDocument Documents
POST connector/Documents/DeleteStudentDocument Documents
POST connector/Documents/GetDocument Documents
POST connector/Documents/GetDocumentBase64 Documents
POST connector/Documents/SaveDocumentType Documents
POST connector/Documents/UpdateStudentDocument Documents
Leads
POST connector/Leads/AddNewLead Leads
POST connector/Leads/GetApplicantData Leads
POST connector/Leads/GetLeadPersonalData Leads
POST connector/Leads/SaveReference Leads
POST connector/Leads/UpdateExternalLeadId Leads
POST connector/Leads/UpdateLeadPersonalData Leads
POST connector/Leads/UpdateLeadStatus Leads
POST connector/Leads/UpdateOptin Leads
POST connector/Leads/UpdateOptout Leads
List
POST connector/List/GetListNames List
POST connector/List/GetListValues List
POST connector/List/UpdateCustomFields List

Authorization

connector/Authorization/GetAuthorizationToken GET

https://apiqa.verityiq.com/connector/Authorization/GetAuthorizationToken
GET connector/Authorization/GetAuthorizationToken
Request Response

application/json, text/json

{
  "username": "string",
  "password": "string"
}

Documents

connector/Documents/AddStudentDocument POST

https://apiqa.verityiq.com/connector/Documents/AddStudentDocument
HEADERS: Authorization: bearer authorization_token POST connector/Documents/AddStudentDocument
Request Response

application/json, text/json

{
  "VerityLeadId": 1,
  "ExternalLeadId": "string",
  "DocumentStatus": "string",
  "ExpirationDate": "2024-04-25T00:29:03.0669517+00:00",
  "DueDate": "2024-04-25T00:29:03.0669517+00:00",
  "DocumentSource": "string",
  "ApprovalCode": "string",
  "User": "string",
  "DocumentType": "string",
  "DocumentFileName": "string",
  "Term": "string",
  "ValidityDate": "2024-04-25T00:29:03.0669517+00:00",
  "FileStream": null,
  "Base64File": "string"
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "UploadedDocumentId": 1,
    "TransactionId": "string",
    "VerityLeadId": 3,
    "ExternalLeadId": "string",
    "DocumentStatus": "string",
    "ExpirationDate": "2024-04-25T00:29:03.1765122+00:00",
    "DueDate": "2024-04-25T00:29:03.1765122+00:00",
    "DocumentSource": "string",
    "ApprovalCode": "string",
    "User": "string",
    "DocumentType": "string",
    "DocumentFileName": "string",
    "Term": "string",
    "ValidityDate": "2024-04-25T00:29:03.1765122+00:00",
    "FileStream": null,
    "Base64File": "string"
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Documents/DeleteStudentDocument POST

https://apiqa.verityiq.com/connector/Documents/DeleteStudentDocument
HEADERS: Authorization: bearer authorization_token POST connector/Documents/DeleteStudentDocument
Request Response

application/json, text/json

{
  "TransactionId": "string",
  "VerityLeadId": 2,
  "ExternalLeadId": "string"
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "TransactionId": "string",
    "VerityLeadId": 2,
    "ExternalLeadId": "string"
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Documents/GetDocument POST

https://apiqa.verityiq.com/connector/Documents/GetDocument
HEADERS: Authorization: bearer authorization_token POST connector/Documents/GetDocument
Request Response

application/json, text/json

{
  "TransactionId": "string",
  "VerityLeadId": 2,
  "ExternalLeadId": "string"
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Documents/GetDocumentBase64 POST

https://apiqa.verityiq.com/connector/Documents/GetDocumentBase64
HEADERS: Authorization: bearer authorization_token POST connector/Documents/GetDocumentBase64
Request Response

application/json, text/json

{
  "TransactionId": "string",
  "VerityLeadId": 2,
  "ExternalLeadId": "string"
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Documents/SaveDocumentType POST

https://apiqa.verityiq.com/connector/Documents/SaveDocumentType
HEADERS: Authorization: bearer authorization_token POST connector/Documents/SaveDocumentType
Request Response

application/json, text/json

{
  "CategoryCode": "string",
  "CategoryName": "string",
  "TypeCode": "string",
  "TypeName": "string",
  "ValidityDuration": 1
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "CategoryCode": "string",
    "CategoryName": "string",
    "TypeCode": "string",
    "TypeName": "string",
    "ValidityDuration": 1
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Documents/UpdateStudentDocument POST

https://apiqa.verityiq.com/connector/Documents/UpdateStudentDocument
HEADERS: Authorization: bearer authorization_token POST connector/Documents/UpdateStudentDocument
Request Response

application/json, text/json

{
  "TransactionId": "string",
  "VerityLeadId": 2,
  "ExternalLeadId": "string",
  "DocumentStatus": "string",
  "ExpirationDate": "2024-04-25T00:29:03.2701817+00:00",
  "DueDate": "2024-04-25T00:29:03.2701817+00:00",
  "DocumentSource": "string",
  "ApprovalCode": "string",
  "User": "string",
  "DocumentType": "string",
  "DocumentFileName": "string",
  "Term": "string",
  "ValidityDate": "2024-04-25T00:29:03.2701817+00:00",
  "FileStream": null,
  "Base64File": "string"
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "UploadedDocumentId": 1,
    "TransactionId": "string",
    "VerityLeadId": 3,
    "ExternalLeadId": "string",
    "DocumentStatus": "string",
    "ExpirationDate": "2024-04-25T00:29:03.2865137+00:00",
    "DueDate": "2024-04-25T00:29:03.2865137+00:00",
    "DocumentSource": "string",
    "ApprovalCode": "string",
    "User": "string",
    "DocumentType": "string",
    "DocumentFileName": "string",
    "Term": "string",
    "ValidityDate": "2024-04-25T00:29:03.2865137+00:00",
    "FileStream": null,
    "Base64File": "string"
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

Leads

connector/Leads/AddNewLead POST

https://apiqa.verityiq.com/connector/Leads/AddNewLead
HEADERS: Authorization: bearer authorization_token POST connector/Leads/AddNewLead
Request Response

application/json, text/json

{
  "ExternalLeadId": "string",
  "FirstName": "string",
  "LastName": "string",
  "MiddleName": "string",
  "FormerName": "string",
  "NickName": "string",
  "PostalCode": "string",
  "Address": "string",
  "City": "string",
  "State": "string",
  "Province": "string",
  "Country": "string",
  "Emails": [
    {
      "IsPreferred": true,
      "ContactType": "string",
      "ContactTypeId": 1,
      "EmailAddress": "string",
      "IsBad": true,
      "IsOld": true,
      "DoNotEmail": true
    },
    {
      "IsPreferred": true,
      "ContactType": "string",
      "ContactTypeId": 1,
      "EmailAddress": "string",
      "IsBad": true,
      "IsOld": true,
      "DoNotEmail": true
    }
  ],
  "Phones": [
    {
      "IsPreferred": true,
      "ContactType": "string",
      "ContactTypeId": 1,
      "PhoneNumber": "string",
      "IsBad": true,
      "IsOld": true,
      "DoNotText": true,
      "DoNotCall": true
    },
    {
      "IsPreferred": true,
      "ContactType": "string",
      "ContactTypeId": 1,
      "PhoneNumber": "string",
      "IsBad": true,
      "IsOld": true,
      "DoNotText": true,
      "DoNotCall": true
    }
  ],
  "LeadSource": "string",
  "LeadStatus": "string",
  "Program": "string",
  "ProgramOfEnrollment": [
    "string",
    "string"
  ],
  "TermStart": "string",
  "Campus": "string",
  "AdmissionAdvisor": "string",
  "StudentAccountsAdvisor": "string",
  "FinancialAidAdvisor": "string",
  "CareerServicesAdvisor": "string",
  "LeadDateTime": "2024-04-25T00:29:03.302088+00:00",
  "ExpectedGradDate": "string",
  "LeadType": "string",
  "Gender": "string",
  "BirthDate": "string",
  "EducationLevel": "string",
  "EmploymentStatus": "string",
  "VeteranStatus": "string",
  "Citizenship": "string",
  "Nationality": "string",
  "Ethnicity": "string",
  "PreferredLanguage": "string",
  "GradYear": "string",
  "ProfessionalTitle": "string",
  "Salutation": "string"
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "VerityLeadId": 1,
    "ExternalLeadId": "string",
    "PotentialMatches": [
      {
        "FirstName": "string",
        "LastName": "string",
        "PhoneNumber": "string",
        "Email": "string",
        "VerityLeadId": 5,
        "ExternalLeadId": "string"
      },
      {
        "FirstName": "string",
        "LastName": "string",
        "PhoneNumber": "string",
        "Email": "string",
        "VerityLeadId": 5,
        "ExternalLeadId": "string"
      }
    ],
    "ExactMatches": [
      {
        "FirstName": "string",
        "LastName": "string",
        "PhoneNumber": "string",
        "Email": "string",
        "VerityLeadId": 5,
        "ExternalLeadId": "string"
      },
      {
        "FirstName": "string",
        "LastName": "string",
        "PhoneNumber": "string",
        "Email": "string",
        "VerityLeadId": 5,
        "ExternalLeadId": "string"
      }
    ],
    "FirstName": "string",
    "LastName": "string",
    "MiddleName": "string",
    "FormerName": "string",
    "NickName": "string",
    "PostalCode": "string",
    "Address": "string",
    "City": "string",
    "State": "string",
    "Province": "string",
    "Country": "string",
    "Emails": [
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "EmailAddress": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotEmail": true
      },
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "EmailAddress": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotEmail": true
      }
    ],
    "Phones": [
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "PhoneNumber": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotText": true,
        "DoNotCall": true
      },
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "PhoneNumber": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotText": true,
        "DoNotCall": true
      }
    ],
    "LeadSource": "string",
    "LeadStatus": "string",
    "Program": "string",
    "ProgramOfEnrollment": [
      "string",
      "string"
    ],
    "TermStart": "string",
    "Campus": "string",
    "AdmissionAdvisor": "string",
    "StudentAccountsAdvisor": "string",
    "FinancialAidAdvisor": "string",
    "CareerServicesAdvisor": "string",
    "LeadDateTime": "2024-04-25T00:29:03.4081492+00:00",
    "ExpectedGradDate": "string",
    "LeadType": "string",
    "Gender": "string",
    "BirthDate": "string",
    "EducationLevel": "string",
    "EmploymentStatus": "string",
    "VeteranStatus": "string",
    "Citizenship": "string",
    "Nationality": "string",
    "Ethnicity": "string",
    "PreferredLanguage": "string",
    "GradYear": "string",
    "ProfessionalTitle": "string",
    "Salutation": "string"
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Leads/GetApplicantData POST

https://apiqa.verityiq.com/connector/Leads/GetApplicantData
HEADERS: Authorization: bearer authorization_token POST connector/Leads/GetApplicantData
Request Response

application/json, text/json

{
  "ApplicationId": "42d03e2a-c4da-4dec-839a-5869470e3918",
  "ApplicationIds": [
    "4c505c7d-2204-4373-b642-4cdedffa2bbc",
    "5eabc7e0-27f0-4f27-ab62-4c6efdf138ba"
  ],
  "VerityLeadId": 1,
  "VerityContactId": "34ae0e69-193d-4cd8-9167-08b4e7ab5425",
  "ExternalLeadId": "string",
  "IncludeInfo": [
    0,
    0
  ],
  "PageNumber": 3,
  "PageSize": 4
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "VerityContactId": "ce774c31-3c41-4ae2-b65a-8b75828d9bdd",
    "Inquiry": {
      "School": "string",
      "LeadSourceCategory": "string",
      "LeadStatusCategory": "string",
      "InquiryDate": "2024-04-25T00:29:03.5376409+00:00",
      "LeadSource": "string",
      "LeadSourceId": 1,
      "LeadStatus": "string",
      "LeadStatusId": 1,
      "ProgramOfInterest": "string",
      "ProgramOfInterestId": 1,
      "TermStart": "string",
      "TermStartDate": "2024-04-25T00:29:03.5376409+00:00",
      "Campus": "string",
      "CampusId": 1,
      "AdmissionsAdvisor": "string",
      "AdmissionsAdvisorId": 1,
      "FinancialAdvisor": "string",
      "FinancialAdvisorId": 1,
      "StudentAccountsAdvisor": "string",
      "StudentAccountsAdvisorId": 1,
      "CareerServicesAdvisor": "string",
      "CareerServicesAdvisorId": 1,
      "ExpectedGradDateCode": "string",
      "ExpectedGradDate": "2024-04-25T00:29:03.5376409+00:00",
      "LeadType": "string",
      "LeadTypeId": 1,
      "ProgramOfEnrollment": [
        "string",
        "string"
      ]
    },
    "Application": [
      {
        "ApplicationId": "14719ff4-1356-46f1-b8d3-b4b74eaa8acf",
        "InquiryId": "53bd3197-13f2-4a74-8920-c798321271de",
        "DateCreated": "2024-04-25T00:29:03.5376409+00:00",
        "LastUpdated": "2024-04-25T00:29:03.5376409+00:00",
        "ApplicationDateStarted": "2024-04-25T00:29:03.5376409+00:00",
        "Status": "string",
        "StatusId": 1,
        "School": "string",
        "Campus": "string",
        "CampusId": 1,
        "ProgramOfEnrollment": "string",
        "ProgramOfEnrollmentCode": "string",
        "ProgramOfEnrollmentId": 1,
        "Shift": "string",
        "ShiftId": 1,
        "StartDateCode": "string",
        "StartDate": "2024-04-25T00:29:03.5376409+00:00",
        "ExpectedGradDateCode": "string",
        "ExpectedGradDate": "2024-04-25T00:29:03.5376409+00:00",
        "AdmissionsAdvisor": "string",
        "AdmissionsAdvisorId": 1,
        "FinancialAdvisor": "string",
        "FinancialAdvisorId": 1,
        "StudentAccountsAdvisor": "string",
        "StudentAccountsAdvisorId": 1,
        "CareerServicesAdvisor": "string",
        "CareerServicesAdvisorId": 1,
        "ParentSignatureRequired": true,
        "RegistrationFee": 1.0,
        "FeeWaived": true
      },
      {
        "ApplicationId": "14719ff4-1356-46f1-b8d3-b4b74eaa8acf",
        "InquiryId": "53bd3197-13f2-4a74-8920-c798321271de",
        "DateCreated": "2024-04-25T00:29:03.5376409+00:00",
        "LastUpdated": "2024-04-25T00:29:03.5376409+00:00",
        "ApplicationDateStarted": "2024-04-25T00:29:03.5376409+00:00",
        "Status": "string",
        "StatusId": 1,
        "School": "string",
        "Campus": "string",
        "CampusId": 1,
        "ProgramOfEnrollment": "string",
        "ProgramOfEnrollmentCode": "string",
        "ProgramOfEnrollmentId": 1,
        "Shift": "string",
        "ShiftId": 1,
        "StartDateCode": "string",
        "StartDate": "2024-04-25T00:29:03.5376409+00:00",
        "ExpectedGradDateCode": "string",
        "ExpectedGradDate": "2024-04-25T00:29:03.5376409+00:00",
        "AdmissionsAdvisor": "string",
        "AdmissionsAdvisorId": 1,
        "FinancialAdvisor": "string",
        "FinancialAdvisorId": 1,
        "StudentAccountsAdvisor": "string",
        "StudentAccountsAdvisorId": 1,
        "CareerServicesAdvisor": "string",
        "CareerServicesAdvisorId": 1,
        "ParentSignatureRequired": true,
        "RegistrationFee": 1.0,
        "FeeWaived": true
      }
    ],
    "Documents": [
      {
        "DocumentType": "string",
        "DocumentTypeId": 1,
        "FileName": "string",
        "FilePath": "string",
        "UploadedUtc": "2024-04-25T00:29:03.5532026+00:00",
        "UploadedBy": "string",
        "DocumentStatus": "string",
        "DocumentStatusId": 6,
        "ExpirationDate": "2024-04-25T00:29:03.5532026+00:00",
        "DueDate": "2024-04-25T00:29:03.5532026+00:00",
        "DocumentSource": "string",
        "ApprovalCode": "string",
        "UserId": "string",
        "DocumentFileName": "string",
        "TransactionId": "string",
        "TermStartCode": "string",
        "TermStart": "2024-04-25T00:29:03.5532026+00:00",
        "IsRevised": true,
        "ValidityDate": "2024-04-25T00:29:03.5532026+00:00",
        "VerityLeadId": 1,
        "ApplicationId": "7ecedc36-1ce2-4d2d-8ea3-d29b0104bcf4",
        "ApplicationDocumentStatus": "string",
        "ApplicationDocumentStatusId": 1,
        "MimeType": "string"
      },
      {
        "DocumentType": "string",
        "DocumentTypeId": 1,
        "FileName": "string",
        "FilePath": "string",
        "UploadedUtc": "2024-04-25T00:29:03.5532026+00:00",
        "UploadedBy": "string",
        "DocumentStatus": "string",
        "DocumentStatusId": 6,
        "ExpirationDate": "2024-04-25T00:29:03.5532026+00:00",
        "DueDate": "2024-04-25T00:29:03.5532026+00:00",
        "DocumentSource": "string",
        "ApprovalCode": "string",
        "UserId": "string",
        "DocumentFileName": "string",
        "TransactionId": "string",
        "TermStartCode": "string",
        "TermStart": "2024-04-25T00:29:03.5532026+00:00",
        "IsRevised": true,
        "ValidityDate": "2024-04-25T00:29:03.5532026+00:00",
        "VerityLeadId": 1,
        "ApplicationId": "7ecedc36-1ce2-4d2d-8ea3-d29b0104bcf4",
        "ApplicationDocumentStatus": "string",
        "ApplicationDocumentStatusId": 1,
        "MimeType": "string"
      }
    ],
    "CustomFields": [
      {
        "Id": 1,
        "Name": "string",
        "Value": "string"
      },
      {
        "Id": 1,
        "Name": "string",
        "Value": "string"
      }
    ],
    "PersonalData": {
      "Salutation": "string",
      "FirstName": "string",
      "MiddleName": "string",
      "LastName": "string",
      "FormerName": "string",
      "Nickname": "string",
      "ProfessionalTitle": "string",
      "BirthDate": "2024-04-25T00:29:03.5532026+00:00",
      "Ssn": "string"
    },
    "Phones": [
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "PhoneNumber": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotText": true,
        "DoNotCall": true
      },
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "PhoneNumber": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotText": true,
        "DoNotCall": true
      }
    ],
    "Emails": [
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "EmailAddress": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotEmail": true
      },
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "EmailAddress": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotEmail": true
      }
    ],
    "Addresses": [
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "Address": "string",
        "Line2": "string",
        "City": "string",
        "State": "string",
        "StateId": 1,
        "County": "string",
        "Province": "string",
        "PostalCode": "string",
        "Country": "string",
        "CountryId": 1,
        "IsBad": true,
        "IsOld": true
      },
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "Address": "string",
        "Line2": "string",
        "City": "string",
        "State": "string",
        "StateId": 1,
        "County": "string",
        "Province": "string",
        "PostalCode": "string",
        "Country": "string",
        "CountryId": 1,
        "IsBad": true,
        "IsOld": true
      }
    ],
    "References": [
      {
        "FirstName": "string",
        "MiddleName": "string",
        "LastName": "string",
        "PhoneNumber": "string",
        "EmailAddress": "string",
        "Relationship": "string",
        "Address": "string",
        "City": "string",
        "Province": "string",
        "PostalCode": "string",
        "State": "string",
        "StateId": 1,
        "Country": "string",
        "CountryId": 1,
        "IsParentSigner": true
      },
      {
        "FirstName": "string",
        "MiddleName": "string",
        "LastName": "string",
        "PhoneNumber": "string",
        "EmailAddress": "string",
        "Relationship": "string",
        "Address": "string",
        "City": "string",
        "Province": "string",
        "PostalCode": "string",
        "State": "string",
        "StateId": 1,
        "Country": "string",
        "CountryId": 1,
        "IsParentSigner": true
      }
    ],
    "Demographics": {
      "HigherEducationCredential": "string",
      "HigherEducationCredentialId": 1,
      "Ethnicity": "string",
      "EthnicityId": 1,
      "Citizenship": "string",
      "CitizenshipId": 1,
      "VeteranStatus": "string",
      "VeteranStatusId": 1,
      "Gender": "string",
      "GenderId": 64,
      "PreferredLanguage": "string",
      "PreferredLanguageId": 1,
      "MaritalStatus": "string",
      "MaritalStatusId": 1,
      "Nationality": "string",
      "NationalityId": 1,
      "PlacementStatus": "string",
      "PlacementStatusId": 1
    },
    "HighSchool": {
      "Credential": "string",
      "CredentialId": 1,
      "Name": "string",
      "GraduationDate": "2024-04-25T00:29:03.5532026+00:00",
      "GraduationYear": 1,
      "DidNotGraduate": true,
      "Address": "string",
      "City": "string",
      "State": "string",
      "StateId": 1,
      "Province": "string",
      "PostalCode": "string",
      "Country": "string",
      "CountryId": 1
    },
    "PreviousEducation": [
      {
        "College": "string",
        "AttendedFrom": "2024-04-25T00:29:03.5688905+00:00",
        "AttendedTo": "2024-04-25T00:29:03.5688905+00:00",
        "GraduationDate": "2024-04-25T00:29:03.5688905+00:00",
        "GraduationYear": 1,
        "Degree": "string",
        "DegreeId": 1,
        "Address": "string",
        "City": "string",
        "State": "string",
        "StateId": 1,
        "Province": "string",
        "PostalCode": "string",
        "Country": "string",
        "CountryId": 1,
        "CollegeProvince": "string"
      },
      {
        "College": "string",
        "AttendedFrom": "2024-04-25T00:29:03.5688905+00:00",
        "AttendedTo": "2024-04-25T00:29:03.5688905+00:00",
        "GraduationDate": "2024-04-25T00:29:03.5688905+00:00",
        "GraduationYear": 1,
        "Degree": "string",
        "DegreeId": 1,
        "Address": "string",
        "City": "string",
        "State": "string",
        "StateId": 1,
        "Province": "string",
        "PostalCode": "string",
        "Country": "string",
        "CountryId": 1,
        "CollegeProvince": "string"
      }
    ],
    "VerityLeadId": 1,
    "ExternalLeadId": "string"
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Leads/GetLeadPersonalData POST

https://apiqa.verityiq.com/connector/Leads/GetLeadPersonalData
HEADERS: Authorization: bearer authorization_token POST connector/Leads/GetLeadPersonalData
Request Response

application/json, text/json

{
  "VerityLeadId": 1,
  "ExternalLeadId": "string"
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "FirstName": "string",
    "LastName": "string",
    "MiddleName": "string",
    "FormerName": "string",
    "NickName": "string",
    "ProfessionalTitle": "string",
    "Salutation": "string",
    "PhoneNumber": "string",
    "Email": "string",
    "PostalCode": "string",
    "Address": "string",
    "City": "string",
    "State": {
      "Id": 1,
      "Name": "string"
    },
    "Province": "string",
    "Country": {
      "Id": 1,
      "Name": "string"
    },
    "Gender": "string",
    "BirthDate": "string",
    "GradYear": "string",
    "EducationLevel": {
      "Id": 1,
      "Name": "string"
    },
    "EmploymentStatus": {
      "Id": 1,
      "Name": "string"
    },
    "VeteranStatus": {
      "Id": 1,
      "Name": "string"
    },
    "Citizenship": {
      "Id": 1,
      "Name": "string"
    },
    "Nationality": {
      "Id": 1,
      "Name": "string"
    },
    "Ethnicity": {
      "Id": 1,
      "Name": "string"
    },
    "PreferredLanguage": {
      "Id": 1,
      "Name": "string"
    },
    "LeadSource": {
      "Id": 1,
      "Name": "string"
    },
    "LeadStatus": {
      "Id": 1,
      "Name": "string"
    },
    "Program": {
      "Id": 1,
      "Name": "string"
    },
    "TermStart": "string",
    "Campus": {
      "Id": 1,
      "Name": "string"
    },
    "AdmissionAdvisor": {
      "Id": 1,
      "Name": "string"
    },
    "CareerServicesAdvisor": {
      "Id": 1,
      "Name": "string"
    },
    "FinancialServicesAdvisor": {
      "Id": 1,
      "Name": "string"
    },
    "StudentAccountsAdvisor": {
      "Id": 1,
      "Name": "string"
    },
    "LeadType": {
      "Id": 1,
      "Name": "string"
    },
    "ProgramsOfEnrollment": [
      {
        "Id": 1,
        "Name": "string"
      },
      {
        "Id": 1,
        "Name": "string"
      }
    ],
    "ExpectedGradDate": "string",
    "LeadDateTime": "string",
    "CustomFields": [
      {
        "Id": 1,
        "Name": "string",
        "Value": "string"
      },
      {
        "Id": 1,
        "Name": "string",
        "Value": "string"
      }
    ],
    "VerityLeadId": 20,
    "ExternalLeadId": "string"
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Leads/SaveReference POST

https://apiqa.verityiq.com/connector/Leads/SaveReference
HEADERS: Authorization: bearer authorization_token POST connector/Leads/SaveReference
Request Response

application/json, text/json

{
  "VerityLeadId": 1,
  "ExternalLeadId": "string",
  "FirstName": "string",
  "MiddleName": "string",
  "LastName": "string",
  "PhoneNumber": "string",
  "EmailAddress": "string",
  "Relationship": "string",
  "Address": "string",
  "City": "string",
  "Province": "string",
  "PostalCode": "string",
  "State": "string",
  "StateId": 1,
  "Country": "string",
  "CountryId": 1,
  "IsParentSigner": true
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "Id": 1,
    "VerityLeadId": 2,
    "ExternalLeadId": "string",
    "FirstName": "string",
    "MiddleName": "string",
    "LastName": "string",
    "PhoneNumber": "string",
    "EmailAddress": "string",
    "Relationship": "string",
    "Address": "string",
    "City": "string",
    "Province": "string",
    "PostalCode": "string",
    "State": "string",
    "StateId": 1,
    "Country": "string",
    "CountryId": 1,
    "IsParentSigner": true
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Leads/UpdateExternalLeadId POST

https://apiqa.verityiq.com/connector/Leads/UpdateExternalLeadId
HEADERS: Authorization: bearer authorization_token POST connector/Leads/UpdateExternalLeadId
Request Response

application/json, text/json

{
  "VerityLeadId": 1,
  "ExternalLeadId": "string"
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "VerityLeadId": 1,
    "ExternalLeadId": "string"
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Leads/UpdateLeadPersonalData POST

https://apiqa.verityiq.com/connector/Leads/UpdateLeadPersonalData
HEADERS: Authorization: bearer authorization_token POST connector/Leads/UpdateLeadPersonalData
Request Response

application/json, text/json

{
  "Email": null,
  "Phone": "",
  "PhoneContactType": "string",
  "PostalCode": "string",
  "Address": "string",
  "City": "string",
  "State": "string",
  "Province": "string",
  "Country": "string",
  "Emails": [
    {
      "IsPreferred": true,
      "ContactType": "string",
      "ContactTypeId": 1,
      "EmailAddress": "string",
      "IsBad": true,
      "IsOld": true,
      "DoNotEmail": true
    },
    {
      "IsPreferred": true,
      "ContactType": "string",
      "ContactTypeId": 1,
      "EmailAddress": "string",
      "IsBad": true,
      "IsOld": true,
      "DoNotEmail": true
    }
  ],
  "Phones": [
    {
      "IsPreferred": true,
      "ContactType": "string",
      "ContactTypeId": 1,
      "PhoneNumber": "string",
      "IsBad": true,
      "IsOld": true,
      "DoNotText": true,
      "DoNotCall": true
    },
    {
      "IsPreferred": true,
      "ContactType": "string",
      "ContactTypeId": 1,
      "PhoneNumber": "string",
      "IsBad": true,
      "IsOld": true,
      "DoNotText": true,
      "DoNotCall": true
    }
  ],
  "FirstName": "string",
  "LastName": "string",
  "MiddleName": "string",
  "FormerName": "string",
  "NickName": "string",
  "ProfessionalTitle": "string",
  "Salutation": "string",
  "Gender": "string",
  "BirthDate": "string",
  "EducationLevel": "string",
  "EmploymentStatus": "string",
  "VeteranStatus": "string",
  "Citizenship": "string",
  "Nationality": "string",
  "Ethnicity": "string",
  "PreferredLanguage": "string",
  "GradYear": "string",
  "LeadSource": "string",
  "LeadStatus": "string",
  "Program": "string",
  "ProgramOfEnrollment": [
    "string",
    "string"
  ],
  "TermStart": "string",
  "Campus": "string",
  "AdmissionAdvisor": "string",
  "LeadType": "string",
  "StudentAccountsAdvisor": "string",
  "FinancialAidAdvisor": "string",
  "CareerServicesAdvisor": "string",
  "LeadDateTime": "2024-04-25T00:29:03.9596949+00:00",
  "ExpectedGradDate": "string",
  "VerityLeadId": 38,
  "ExternalLeadId": "string"
}

application/json, text/json

{
  "Warnings": "string",
  "Message": "string",
  "Success": true,
  "Data": {
    "Email": null,
    "Phone": "",
    "PhoneContactType": "string",
    "PostalCode": "string",
    "Address": "string",
    "City": "string",
    "State": "string",
    "Province": "string",
    "Country": "string",
    "Emails": [
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "EmailAddress": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotEmail": true
      },
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "EmailAddress": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotEmail": true
      }
    ],
    "Phones": [
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "PhoneNumber": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotText": true,
        "DoNotCall": true
      },
      {
        "IsPreferred": true,
        "ContactType": "string",
        "ContactTypeId": 1,
        "PhoneNumber": "string",
        "IsBad": true,
        "IsOld": true,
        "DoNotText": true,
        "DoNotCall": true
      }
    ],
    "FirstName": "string",
    "LastName": "string",
    "MiddleName": "string",
    "FormerName": "string",
    "NickName": "string",
    "ProfessionalTitle": "string",
    "Salutation": "string",
    "Gender": "string",
    "BirthDate": "string",
    "EducationLevel": "string",
    "EmploymentStatus": "string",
    "VeteranStatus": "string",
    "Citizenship": "string",
    "Nationality": "string",
    "Ethnicity": "string",
    "PreferredLanguage": "string",
    "GradYear": "string",
    "LeadSource": "string",
    "LeadStatus": "string",
    "Program": "string",
    "ProgramOfEnrollment": [
      "string",
      "string"
    ],
    "TermStart": "string",
    "Campus": "string",
    "AdmissionAdvisor": "string",
    "LeadType": "string",
    "StudentAccountsAdvisor": "string",
    "FinancialAidAdvisor": "string",
    "CareerServicesAdvisor": "string",
    "LeadDateTime": "2024-04-25T00:29:04.0065362+00:00",
    "ExpectedGradDate": "string",
    "VerityLeadId": 38,
    "ExternalLeadId": "string"
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Leads/UpdateLeadStatus POST

https://apiqa.verityiq.com/connector/Leads/UpdateLeadStatus
HEADERS: Authorization: bearer authorization_token POST connector/Leads/UpdateLeadStatus
Request Response

application/json, text/json

{
  "StatusId": 1,
  "VerityLeadId": 2,
  "ExternalLeadId": "string"
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "StatusId": 1,
    "VerityLeadId": 2,
    "ExternalLeadId": "string"
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Leads/UpdateOptin POST

https://apiqa.verityiq.com/connector/Leads/UpdateOptin
HEADERS: Authorization: bearer authorization_token POST connector/Leads/UpdateOptin
Request Response

application/json, text/json

{
  "VerityLeadId": 1,
  "ExternalLeadId": "string",
  "Emails": [
    "string",
    "string"
  ],
  "Phones": [
    "string",
    "string"
  ],
  "Text": [
    "string",
    "string"
  ]
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "VerityLeadId": 1,
    "ExternalLeadId": "string",
    "Emails": [
      "string",
      "string"
    ],
    "Phones": [
      "string",
      "string"
    ],
    "Text": [
      "string",
      "string"
    ]
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/Leads/UpdateOptout POST

https://apiqa.verityiq.com/connector/Leads/UpdateOptout
HEADERS: Authorization: bearer authorization_token POST connector/Leads/UpdateOptout
Request Response

application/json, text/json

{
  "VerityLeadId": 1,
  "ExternalLeadId": "string",
  "Emails": [
    "string",
    "string"
  ],
  "Phones": [
    "string",
    "string"
  ],
  "Text": [
    "string",
    "string"
  ]
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "VerityLeadId": 1,
    "ExternalLeadId": "string",
    "Emails": [
      "string",
      "string"
    ],
    "Phones": [
      "string",
      "string"
    ],
    "Text": [
      "string",
      "string"
    ]
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

List

connector/List/GetListNames POST

https://apiqa.verityiq.com/connector/List/GetListNames
HEADERS: Authorization: bearer authorization_token POST connector/List/GetListNames
Request Response

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": [
    {
      "Id": 1,
      "Name": "string"
    },
    {
      "Id": 1,
      "Name": "string"
    }
  ]
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/List/GetListValues POST

https://apiqa.verityiq.com/connector/List/GetListValues
HEADERS: Authorization: bearer authorization_token POST connector/List/GetListValues
Request Response

application/json, text/json

{
  "Id": 1,
  "Name": "string"
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": [
    {
      "Id": 1,
      "Name": "string"
    },
    {
      "Id": 1,
      "Name": "string"
    }
  ]
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }

connector/List/UpdateCustomFields POST

https://apiqa.verityiq.com/connector/List/UpdateCustomFields
HEADERS: Authorization: bearer authorization_token POST connector/List/UpdateCustomFields
Request Response

application/json, text/json

{
  "VerityLeadId": 1,
  "ExternalLeadId": "string",
  "CustomFields": [
    {
      "CustomFieldId": 1,
      "Name": "string",
      "Value": "string"
    },
    {
      "CustomFieldId": 1,
      "Name": "string",
      "Value": "string"
    }
  ]
}

application/json, text/json

{
  "Message": "string",
  "Success": true,
  "Data": {
    "VerityLeadId": 1,
    "ExternalLeadId": "string",
    "CustomFields": [
      {
        "CustomFieldId": 1,
        "Name": "string",
        "Value": "string"
      },
      {
        "CustomFieldId": 1,
        "Name": "string",
        "Value": "string"
      }
    ]
  }
}
SUCCESSFULL: { 'MESSAGE': 'OK', 'Success' : true, 'Data' : { ... } }
MISSING/WRONG AUTHORIZATION: { 'MESSAGE': 'Invalid data provided', 'Success' : false, 'Data' : null }
INVALID VerityLeadId and/or ExternalLeadId: { 'MESSAGE': 'Invalid lead credentials provided ( VerityLeadId or ExternalLeadId)', 'Success' : false, 'Data' : null }