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

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

The loan contact information

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"

Response

204

No Content