Skip to main content

Register application

Process Flow

Please reference the full sequence diagram.

Base URL

The table below shows the Base URL to be used with the endpoints mentioned in this guide.

EnvironmentBase URL
Staging:https://api.staging.informediq-infra.com
Production:https://api.informediq.com

Full Example Request

The first step in having stipulations verified for a loan is to register the loan application with Informed. The below code block shows a full example request payload for the initial call to register an application. The following sections provide details on the key nodes of the request payload.

Example Application
{
"application_reference_id": "your_unique_application_id",
"application_date": "2021-05-09T09:11:38",
"contract_date": "2021-05-09T09:11:38",
"application_type": "Application",
"application_status": "active",
"contract_type": "Electronic",
"product_type": "Loan",
"product_sub_type": "Retail",
"collateral_type": "auto", // coming soon!
"customer_language": "English",
"applicants": {
"applicant1": {
"first_name": "Jo",
"middle_name": null,
"last_name": "Boren",
"suffix": null,
"email": "jo.boren@gmail.com",
"phone": "9196201234",
"ssn": "681129638",
"date_of_birth": "1965-12-10",
"address_info": [
{
"address": {
"street_address": "8717 S 4th Ave",
"city": "Inglewood",
"state": "CA",
"zip": "90305"
},
"is_current": true,
"start_date": "2020-10-01",
"end_date": null,
"residence_type": "Rent",
"monthly_housing_cost": 1000
}
],
"employment_info": [
{
"employment_type": "Employed",
"employer_name": "Envoy Air, Inc.",
"is_current": true,
"occupation": "Crew Member",
"income": {
"period": "Yearly",
"amount": 74500
},
"start_date": "2018-11-01",
"end_date": null,
"business_phone": "9196571475"
}
],
"additional_incomes": [
{
"source": "ChildSupport",
"income": {
"period": "Yearly",
"amount": 10000
}
}
]
},
"applicant2": {
"first_name": "Lucinda",
"last_name": "Bonadio",
"email": "lucinda.bonadio@gmail.com",
"phone": "9196202345",
"ssn": "681129443",
"date_of_birth": "1965-12-10",
"address_info": [
{
"address": {
"street_address": "8717 S 4th Ave",
"city": "Inglewood",
"state": "CA",
"zip": "90305"
},
"is_current": true,
"start_date": "2020-10-01",
"end_date": null,
"residence_type": "Rent",
"monthly_housing_cost": 1000
}
],
"employment_info": [
{
"employment_type": "Employed",
"employer_name": "Informed Inc.",
"is_current": true,
"occupation": "Crew Member",
"income": {
"period": "Yearly",
"amount": 60000
},
"start_date": "2018-11-01",
"end_date": null,
"business_phone": "9196571425"
}
]
}
},
"verifications": {
"income": [
{
"belongs_to": "applicant1"
},
{
"belongs_to": "applicant2"
}
],
"residence": [
{
"belongs_to": "applicant1"
}
],
"insurance": [
{
"belongs_to": "applicant1"
}
],
"identity": [
{
"belongs_to": "applicant1"
},
{
"belongs_to": "applicant2"
}
],
"retail_installment_sales_contract": [
{
"belongs_to": "application"
}
],
"odometer_statement": [
{
"belongs_to": "application"
}
],
"bookout_sheet": [
{
"belongs_to": "application"
}
]
},
"vehicle_info": {
"vin": "1HGCR2F52GA195235",
"make": "Honda",
"model": "Accord",
"year": 2014,
"trim": "Sedan",
"color": "Black",
"odometer": 62940,
"condition": "Used",
"equipments": "Fog Lights, Power Mirrors",
"selling_price": 16900
},
"dealer_info": {
"dealer_reference_id": "918278126",
"dealer_name": "Toyota Of Hollywood",
"dealer_phone": "3234982260",
"address": {
"street_address": "6000 Hollywood Blvd",
"city": "Los Angeles",
"state": "CA",
"zip": "90028"
}
},
"loan_info": {
"amount_financed": 21345.23,
"apr": 7.25,
"dti": 33,
"ltv": 89,
"monthly_payment": 513.62,
"total_down_payment": 2000.00,
"sales_price": 23345.23,
"pti": 10,
"term": 48,
"credit_score": {
"applicant1": 695,
"applicant2": 680
}
},
"lender_info": {
"lender_name": "Acme Lending LLC",
"lender_id": "abc123"
},
"services": [
"extract",
"verify"
],
"webhook": "https://your.callback.com/here"
}

Request Components

Endpoint

You will append the following endpoint to the base URL to register the initial application:

/v1/auto/applications

So to put it all together, you will make a POST call to the following URL with a request payload similar to the one shown above:

https://api.staging.informediq-infra.com/v1/auto/applications

Application Level Info

This is the application level information included in the payload, where your unique Application Reference ID is defined along with the application dates, status, contract type and customer language.

Application Level Info
{
"application_reference_id": "your_unique_application_id",
"application_date": "2021-05-09T09:11:38",
"contract_date": "2021-05-09T09:11:38",
"application_type": "Application",
"application_status": "active",
"contract_type": "Electronic",
"product_type": "Loan",
"product_sub_type": "Retail",
"collateral_type": "auto", // coming soon!
"customer_language": "English",
...
}
ElementValueDescription
application_reference_idstringRequired
Your unique identifier for the loan application
application_datestringRequired
The date when the application was decisioned.

Use either YYYY-MM-DDThh:mm:ss or YYYY-MM-DD format.
Examples: 1981-12-30T12:25:00 or 1981-12-30
contract_datestringOptional
Typically is the same date as the application date, but can be different. If you explicitly know the contract date, it is recommended to provide it, especially if it is different than the application date.

Use either YYYY-MM-DDThh:mm:ss or YYYY-MM-DD format.
Examples: 1981-12-30T12:25:00 or 1981-12-30
application_typestringOptional
Values can either be Lead or Application.

If the element is not present, or empty, it defaults to the value of Application, which is the standard workflow. Lead is for very specific use cases. More information can be found here. Please contact your Account Manager if you have questions about the Lead workflow.
application_statusstringRequired
Set value to active
contract_typestringConditional
The type of Retail Installment Sales contract being submitted to Informed. This will either be Electronic if sending eContract data, or Paper.

This element is required if performing dealer document verifications but is not required if you are only performing consumer document verifications or using the Skip-the-Stip service.
customer_languagestringOptional
Primary language of the applicant. This is tied to the Foreign Language Acknowledgment stipulation. Common values would be English or Spanish.
product_typestringConditional
The default value for this property if not supplied is Loan.

If you are just registering individual retail loans, this field is not required. However, if you are registering business loans or leases of any sort, then this property is required with the value registered as either Loan or Lease as appropriate. More information and examples can be found here.
product_sub_typestringConditional
The default value for this property if not supplied is Retail.

If you are registering business loans or business leases, this property is required with a value of Business. More information and examples can be found here.
collateral_typestringConditional
The default value for this property if not supplied is auto.

If you are registering applications where the collateral is something other than an automobile, this property is required.

Valid values:  auto, rv, marine, motorcycle

The functionality of this field will be coming soon. There is no harm in including this property in the meantime.

Applicant Personal Info

This section of the JSON payload is where all of the applicant's personal information is defined. This information will be used for verifications and comparisons against the documents that are provided for a given application.

At the current time, the number of applicant blocks that can be provided under the applicants section is limited to applicant1 and applicant2.

tip

There needs to be an applicant1 in the payload. If you do not have a second applicant for an application, the preferred approach then is to just leave the applicant2 property out of the payload completely. Please do not set applicant2 to null.

Applicant Personal Info
{
...
"applicants":
{
"applicant1":
{
"first_name": "Jo",
"middle_name": null,
"last_name": "Boren",
"suffix": null,
"email": "jo.boren@gmail.com",
"phone": "9196201234",
"ssn": "681129638",
"date_of_birth": "1965-12-10",
"address_info": [
{...}
],
"employment_info": [
{...}
],
"additional_incomes": [
{...}
]
},
...
}
...
}
ElementValueDescription
first_namestringRequired
Example: John
middle_namestringOptional
Middle name or middle initial
Example: Edgar or E
last_namestringRequired
Example: Doe
suffixstringOptional
Valid values are: I, II, III, IV, JR, SR
business_namestringConditional
If you are registering a business retail loan, the first applicant will be the business, and it will use the business_name property as opposed to the different name properties.

Example: Best Business Company, Inc.

Note: If you use the business_name property for the business in applicant1, then you will submit a null value for the first_name and last_name properties. More information and examples can be found here.
emailstringOptional
Should be a valid email address.  Example: john.doe@gmail.com
phonestringOptional
Only required if part of a CollectIQ request. Only US mobile phone numbers that are textable will be supported.
Example: 6508675329 or 650-867-5329

Note: For partners integrating after January 2024, phone will be a required field. It is also a required field if you are registering a Lead.
ssnstringConditional
Currently, you will not receive a 400 response if you leave this property out of your request, but if you are verifying ssn, then you definitely should be providing the ssn property with a value. If you don't know the applicant's SSN, then you can submit a null value, but please note that this may change in the future to require a non-null value.

Example: 666111234. Could also be an ITIN.
Can also be last 4 digits of the SSN.
Example: 1234

Note: For partners integrating after January 2024, ssn will be a required field.
tax_idstringConditional
If you are registering a business retail loan, the first applicant will be the business, and it will use the tax_id property as opposed to the ssn property.

Example: 666111234

Note: If you use the tax_id property for the business in applicant1, then you will submit a null value for the ssn property. More information and examples can be found here.
date_of_birthstringRequired
Currently, it is required to submit the date_of_birth property in every request, but if you do not know the applicant's date of birth, then you can submit a null value (also it would be null if the applicant is a business).

Please note that in the future it may be required to include a non-null value for date_of_birth if you are verifying credit_application, identity, or ssn.

Date of birth value should be in YYYY-MM-DD format.
Example: 1981-12-30
liability_structurestringConditional
If you are registering a business retail loan, the first applicant will be the business, but the second applicant can be categorized as either a normal co-applicant, or a guarantor, and this property is required to indicate that status for the second applicant (applicant2).

Valid values are either
coapplicant
guarantor

More information and examples can be found here.

Applicant Address Info

This section of the JSON payload is where the applicant's address information is specified. It is important that if there are multiple addresses being sent for an applicant, that only the current residence has is_current set to true.

Applicant Address Info
{
...
"applicants":
{
"applicant1":
{
...
"address_info": [
{
"address":
{
"street_address": "8717 S 4th Ave",
"street_2": "Apt 120C",
"city": "Inglewood",
"state": "CA",
"zip": "90305"
},
"is_current": true,
"start_date": "2020-10-01",
"end_date": null,
"residence_type": "Rent",
"monthly_housing_cost": 1000
}
],
"employment_info": [
{...}
],
"additional_incomes": [
{...}
]
},
...
}
...
}
ElementValueDescription
street_addressstringRequired
Example: 1 Example St
street_2stringOptional
Example: Apt 120C
citystringRequired
Example: San Francisco
statestringRequired
Standard two-letter abbreviation. Example: CA
zipstringRequired
Zip codes are formatted as strings due to the fact that some zip codes start with a zero. Example: 94105
is_currentbooleanRequired
If set to true this designates that the address is the current residence for the applicant. If the address is a previous residence, the value should be set to false. One of the associated address objects must have is_current set to true.
start_datestringOptional
Date when the applicant began living at the specified address. Use YYYY-MM-DD format: 2020-10-01
end_datestringOptional
If not the current residence, this is date when the applicant stopped living at that address. Use YYYY-MM-DD format: 2022-10-01
residence_typestringOptional
Valid values are: Rent, Own, Family, Mortgage
monthly_housing_costnumericOptional
Example: 1000.01 (in USD)

Applicant Employment Info

This section of the JSON payload is where the applicant's employment information is specified. Only one block of employment information with is_current set to true should be added to the employment_info section.

tip

If the applicant has more than one current employer, the additional employment income should be included in the additional_incomes section described below.

If the applicant is a business, then the employment_info key-value pair is not expected.

Applicant Employment Info
{
...
"applicants":
{
"applicant1":
{
...
"address_info": [
{...}
],
"employment_info": [
{
"employment_type": "Employed",
"employer_name": "Envoy Air, Inc.",
"is_current": true,
"occupation": "Crew Member",
"income":
{
"period": "Yearly",
"amount": 74500
},
"start_date": "2018-11-01",
"end_date": null,
"business_phone": "9196571475"
}
],
"additional_incomes": [
{...}
]
},
...
}
...
}
ElementValueDescription
employment_typestringRequired
Valid values: Employed, Unemployed, Retired, SelfEmployed, Other
employer_namestringConditional
Required if employment_type is Employed.

Example: Informed, Inc.

If you do not know the employer name, you can put unknown for the value of this element, but note that the subsequent mismatch of expected employer name to actual employer name found on the supporting documentation will trigger the need for manual intervention.
is_currentbooleanRequired
If true this designates the applicant's current employment. Set to false if providing previous empoloyment information. One of the associated employment objects must have is_current set to true.
occupationstringConditional
The applicant's occupation is required if you are using the Skip-the-Stip service.
Example: "Software engineer"
periodstringRequired
Valid values: Weekly, BiWeekly, Semimonthly, Monthly, Quarterly, Yearly, Annually
amountnumericRequired
Income amount earned in the specified period (in USD).
Example: 3126.00
start_datestringConditional
Required if employment_type is Employed.

Date when the applicant began working at the place of employment. Use YYYY-MM-DD format: 2018-11-01
end_datestringOptional
Date when the applicant stopped working at the place of employment (only applies if this is not their current employment). Use YYYY-MM-DD format: 2020-11-01
business_phonestringOptional
Only US phone numbers will be supported.
Example: 6508675309 or 650-867-5309.

Applicant Additional Income Info

This section of the JSON payload is where any additional sources of income can be specified for an applicant. This section should only be included if there are additional incomes that need to be accounted for.

Applicant Additional Income Info
{
...
"applicants":
{
"applicant1":
{
...
"address_info": [
{...}
],
"employment_info": [
{...}
],
"additional_incomes": [
{
"source": "ChildSupport",
"income":
{
"period": "Yearly",
"amount": 10000
}
}
]
},
...
}
...
}
ElementsValuesDescription
sourcestringRequired
Valid values are:
Alimony, Annuity, ChildSupport, DisabilityInsurance, PassiveIncome, RideShare, SSI, Trust, Other. Second jobs are typically classified as Other.
periodstringRequired
Valid values: Weekly, BiWeekly, SemiMonthly, Monthly, Quarterly, Yearly, Annually
amountnumericRequired
Income amount earned in the specified period (in USD).
Example: 3126.00

Verifications

The verifications are the stipulations for which an applicant will be analyzed. Both applicants do not need to have the same stipulations. This is defined by the belongs_to property for either or both applicants or the application on each individual verification.

tip

The verifications object can be left empty if you are using the Skip-the-Stip service initially.

Verifications
{
...
"verifications": {
"income": [
{
"belongs_to": "applicant1"
},
{
"belongs_to": "applicant2"
}
],
"residence": [
{
"belongs_to": "applicant1"
}
],
"retail_installment_sales_contract": [
{
"belongs_to": "application"
}
],
...
}
...
}
ElementValueDescription
verificationsstringRequired

Valid values for consumer stipulations belonging to applicants:
identity, income, residence, insurance, ssn

Valid values for dealer stipulations belonging to the application:
credit_application, retail_installment_sales_contract, cosigner_notice, odometer_statement, foreign_language_acknowledgement, order_form, bookout_sheet, gap_waiver_contract, vehicle_service_contract, title_application, contract_cancellation_option, appearance_protection, maintenance_plan, paintless_dent_repair, theft_protection, tire_wheel, added_products_services, gap_disclosure, key_replacement, windshield_protection, bundled_product, contract_assignment
belongs_tostringRequired
Associates the given verification with a particular applicant or the application as a whole. Values would be applicant1, applicant2 or application.  Please see the tip below for more information.
tip

The dealer stipulations should all have "belongs_to": "application".

credit_application
title_application
bookout_sheet
odometer_statement
cosigner_notice
contract_cancellation_option
foreign_language_acknowledgement
order_form
retail_installment_sales_contract
contract_assignment
added_products_services
vehicle_service_contract
gap_waiver_contract
gap_disclosure
theft_protection
maintenance_plan
appearance_protection
tire_wheel
paintless_dent_repair
key_replacement
windshield_protection
bundled_product

The consumer stipulations should have "belongs_to": "applicant1" or "belongs_to": "applicant2" (or both) as appropriate.

Vehicle Info

The vehicle_info section contains all of the relevant details necessary for performing verifications related to the vehicle. This information is only required if performing dealer verifications and when using the Skip-the-Stip service, however it is highly recommended to provide it for all applications if you want to be able to take advantage of the rich data analytics that result.

tip

If you are using the CollectIQ functionality with your applications in the context of auto lending, then for the best user experience for your applicants, you should make sure to include the vehicle_info object and all of the required vehicle info properties as described below in your original request when you register the application, even though you may be solely verifying consumer information.

Vehicle Info
{
...
"vehicle_info": {
"vin": "1HGCR2F52GA195235",
"make": "Honda",
"model": "Accord",
"year": 2014,
"trim": "Sedan",
"color": "Black",
"odometer": 62940,
"condition": "Used",
"equipments": "Fog Lights, Power Mirrors",
"selling_price": 16900
}
...
}
ElementValueDescription
vinstringRequired
Example: JTHBE1D21E5010850
makestringRequired
Example: Lexus
modelstringRequired
Example: IS
yearnumericRequired
Example: 2014
trimstringOptional
Example: IS 350 Sedan 4D
colorstringOptional
Example: Black
odometernumericConditional
Required for dealer verifications, but not for the Skip-the-Stip service.
Example: 33000 (in miles)
conditionstringConditional
Required for dealer verifications, but not for the Skip-the-Stip service.
Valid values are: New, Used or CertifiedUsed
equipmentsstringOptional
Comma separated list of supported equipment.
Example: Fog Lights, Power Mirrors
selling_pricenumericConditional
Required for dealer verifications, but not for the Skip-the-Stip service.
Selling price of vehicle. Example: 15000.00 (in USD)

Dealer Info

The dealer_info section contains all of the relevant details necessary for performing verifications related to the dealership. This information is only required if performing dealer verifications and when using the Skip-the-Stip service, however it is highly recommended to provide it for all applications if you want to be able to take advantage of the rich data analytics that result.

tip

If you are using the CollectIQ functionality with your applications in the context of auto lending, then for the best user experience for your applicants, you should make sure to include the dealer_info object and all of the required dealer info properties as described below in your original request when you register the application, even though you may be solely verifying consumer information.

Dealer Info
{
...
"dealer_info": {
"dealer_reference_id": "918278126",
"dealer_name": "Toyota Of Hollywood",
"dealer_phone": "3234982260",
"address": {
"street_address": "6000 Hollywood Blvd",
"city": "Los Angeles",
"state": "CA",
"zip": "90028"
}
}
...
}
ElementValueDescription
dealer_reference_idstringRequired
Example: 712328
dealer_namestringRequired
Example: Honda of Marin
dealer_phonestringOptional
Only US phone numbers will be supported. This field is required if requesting documents are uploaded by the dealer.

Example: 6508675309 or 650-867-5309
street_addressstringRequired
Example: 1 Example St
citystringRequired
Example: San Francisco
statestringRequired
Standard two-letter abbreviation. Example: CA
zipstringRequired
Zip codes are formatted as strings due to the fact that some zip codes start with a zero. Example: 94105

Trade-in Vehicle Info

The trade_in_vehicle_info section contains all of the relevant details about the trade-in vehicle if one is involved in the sale. It is currently an optional section.

Trade-in Vehicle Info
{
...
"trade_in_vehicle_info": {
"vin": "1G1ZD5STXJF123456",
"make": "Chevrolet",
"model": "Malibu",
"year": 2018,
"odometer": 55284
}
...
}
ElementValueDescription
vinstringOptional
Example: 1G1ZD5STXJF123456
makestringOptional
Example: Chevrolet
modelstringOptional
Example: Malibu
yearnumericOptional
Example: 2018
odometernumericOptional
Example: 55284 (in miles)

Loan Info

The loan_info section contains relevant information about the loan in question. It is currently an optional section.

Loan Info
{
...
"loan_info": {
"amount_financed": 21345.23,
"apr": 7.25,
"dti": 33,
"ltv": 89,
"monthly_payment": 513.62,
"total_down_payment": 2000.00,
"sales_price": 23345.23,
"pti": 10,
"term": 48,
"credit_score": {
"applicant1": 695,
"applicant2": 680
}
},
...
}
ElementValueDescription
amount_financednumericOptional
Integer or decimal value representing the dollar amount financed.
Example: 21345.23
aprnumericOptional
Decimal value representing the APR (percentage) of the loan.
Example: 7.25
dtinumericOptional
Integer value representing percentage of debt-to-income ratio.
Example: 33
ltvnumericOptional
Integer value representing percentage of loan-to-value ratio.
Example: 89
monthly_paymentnumericOptional
Integer or decimal value representing dollar amount of monthly payment.
Example: 513.62
total_down_paymentnumericOptional
Integer or decimal value representing dollar amount of total down payment.
Example: 2000.00
sales_pricenumericOptional
Integer or decimal value representing dollar amount of sales price.
Example: 23345.23
ptinumericOptional
Integer value representing percentage of payment-to-income ratio.
Example: 10
termnumericOptional
Integer value representing the number of months of the loan term.
Example: 48
credit_scoreobjectOptional
Object holding the integer value representing each registered applicant's credit score. If there is only one applicant, then you just need to include applicant1.

Example:
"credit_score": {
   "applicant1": 695,
   "applicant2": 680
}

Lender Info

The lender_info section contains relevant information about the lender. It is currently an optional section.

Lender Info
{
...
"lender_info": {
"lender_name": "Acme Lending LLC",
"lender_id": "abc123"
}
...
}
ElementValueDescription
lender_namestringOptional
The name of the lender associated with this application. For most lenders, this will not change, but for some integrations, having the option to specify a lender per application will allow for additional metrics tracking or billing differentiation.

Example: Acme Lending LLC
lender_idstringOptional
A unique identifier for the lender named in lender_name

Example: abc123

Services

These are the services that the Informed API will be able to perform for the registered application if specified in the request:

  • The skip-the-stip service indicates that you plan on calling the Skip-the-Stip endpoint with this registered application.
  • The extract service will return both the classification of the documents and the relevant data extracted from the documents that were provided.
  • The verify service will perform analysis of all of the requested verifications for a given applicant based on the provided documents.

For most of your calls, you will want to just include the extract and verify options, since you will receive the classification results in the extraction response.

{
...
"services": [
"extract",
"verify"
],
...
}

or

{
...
"services": [
"skip-the-stip"
],
...
}
tip

If you register just the skip-the-stip service and include no verifications, then all of the points in this table are relevant. However, if you register other services up front, like extract and/or verify and include verifications, then the registration request must also follow all the normal guidelines presented on this page for the services and verifications that you are requesting. Please note that you can always make another call at a later time to update the application and add things like services and verifications as desired.

Callback Url

A webhook must be provided to receive asynchronous responses containing classified documents with extracted data and analysis. Basic auth credentials will need to be shared with Informed to ensure secure transmission at time of setup. To further safeguard data, Informed will only POST back to your webhook using the HTTPS protocol to ensure encryption in transit. More technical details about your callback endpoint can be found at the link in this paragraph above.

caution

Please note that you are not forced to provide a webhook URL. If you do not provide a URL here, you will still be able to see the extractions and verifications in the VerifyIQ interface, but you will not receive any asynchronous, programmatic callbacks with data.

{
...
"webhook": "https://your.callback.com/here"
}

Synchronous Response

If you are using the DealerVerify product from Informed, a successful API request resulting in an application registration will return the following synchronous response to indicate that the application was submitted to Informed. Make sure that you record the application_id value, as you will need that in subsequent steps, such as associating documents with the application or updating the applicant info.

Additionally, you will want to record the value of dealer_url, as you will want to share that with the dealer associated with the application for the collection and uploading of relevant consumer documents.

If you are not using DealerVerify, the synchronous registration response will look like below but without the dealer_url property.

  {
"application_id": "unique-Informed-app-id",
"status": "Ready",
"dealer_url": "https://unique-url-for-dealer.com",
"verifyiq_url": "https://partner.verifyiq.staging.informediq-infra.com/applications/unique-app-id"
}

info

Informed now offers the option of returning the fully constructed VerifyIQ URL in the synchronous registration response. Please contact your account representative if you would like this feature enabled.

Updating Application Info

The application update payload will look the same as the initial application registration request payload, but with the modified values/additions. And, you will need to send this as a PUT call to a slightly different endpoint because the application already exists.

caution

Note that this is a PUT and not a PATCH call, which means that you must resend the entire original payload but with any applicable modifications. For example, if you start with two applicants and only send one applicant in the update payload, the second applicant will be removed from the application.

The one thing you cannot update with this PUT call for an existing application is the application_reference_id (reference). That value must stay the same for the life of the application.

Endpoint

You will append the following endpoint to the base URL to update the application:

/v1/auto/applications/<unique-Informed-app-id>

So to put it all together, you will make a PUT call to the following URL with your request payload:

https://api.staging.informediq-infra.com/v1/auto/applications/<unique-Informed-app-id>

Tracking update requests

Informed now offers the ability to more definitively correlate specific application PUT updates with the resulting verifications response. To accomplish this, you will need to include the new application_update_reference_id property in your application update PUT request as shown below.

{
"application_reference_id": "your_unique_application_id",
"application_update_reference_id": "your_unique_update_identifier",
"application_date": "2021-05-09T09:11:38",
"application_type": "Application",
...
}

The same application_update_reference_id key and value will be returned in the corresponding verifications response, and all subsequent verifications responses until you send a new PUT update to the application registration with a new application_update_reference_id. You should be putting a unique value for the application_update_reference_id in each PUT request if you are using this functionality (e.g., a UUID/GUID or hash).

Responses

Synchronous response

tip

The synchronous response will contain the same unique-Informed-app-id that you received in the synchronous response to the original application registration.


{
"application_id": "unique-Informed-app-id",
"status": "Ready"
}

Asynchronous response

An application update using the PUT method will always result in an asynchronous verifications response to your callback URL.