Skip to main content
PUT
/
v1
/
loans
/
{id}
/
loan-contacts
Add or Update Loan Contacts
curl --request PUT \
  --url https://sandbox-api.itscovered.com/lenders/v1/loans/{id}/loan-contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "email": "john.doe@example.com",
    "firstName": "John",
    "lastName": "Doe",
    "phone": "1234567890",
    "role": "Loan Officer"
  }
]
'

Authorizations

Authorization
string
header
required

JWT Token

Path Parameters

id
string
required

The unique identifier of the loan application

Example:

"693f2f46-69ff-4f20-a4d9-abe982d34fd4"

Body

email
string
required

The email of the loan officer

Example:

"john.doe@example.com"

firstName
string
required

The first name of the loan officer

Example:

"John"

lastName
string
required

The last name of the loan officer

Example:

"Doe"

phone
string
required

The phone number of the loan officer

Example:

"1234567890"

role
string
required

The role of the loan contact

Example:

"Loan Officer"

Response

204

No Content