Skip to main content
PUT
/
borrowers
/
{id}
Update Borrower
curl --request PUT \
  --url https://los.universal.rollout.com/api/borrowers/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "emails": [
    {
      "value": "<string>",
      "type": "<string>",
      "status": "<string>",
      "isPrimary": true
    }
  ],
  "name": "<string>",
  "type": "<string>",
  "phones": [
    {
      "value": "<string>",
      "type": "<string>",
      "status": "<string>",
      "isPrimary": true
    }
  ],
  "addresses": [
    {
      "type": "<string>",
      "street": "<string>",
      "city": "<string>",
      "state": "<string>",
      "code": "<string>",
      "country": "<string>"
    }
  ],
  "role": "<string>",
  "taxId": "<string>",
  "bio": {}
}
'
{
  "id": "<string>",
  "created": "<string>",
  "updated": "<string>",
  "rolloutUpdated": "<string>",
  "originalIds": {},
  "original": {}
}

Path Parameters

id
string
required

Body

application/json
emails
object[]
name
string
type
string
phones
object[]
addresses
object[]
role
string
taxId
string
bio
object

Response

OK

id
string
required
created
string
required
updated
string
required
rolloutUpdated
string
required
originalIds
object
required
original
object
required