Skip to main content
POST
/
borrowers
Create Borrower
curl --request POST \
  --url https://los.universal.rollout.com/api/borrowers \
  --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>"
    }
  ],
  "taxId": "<string>",
  "loanId": "<string>",
  "role": "<string>"
}
'
{
  "id": "<string>",
  "created": "<string>",
  "updated": "<string>",
  "rolloutUpdated": "<string>",
  "originalIds": {},
  "original": {}
}

Body

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

Response

Created

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