If your API connection has not yet been configured, you will need to complete that step first.
LoanPro's API will look for three special headers to authenticate your request:
Authorization
,
Autopal-Instance-ID
, and
Content-Type
Double-check your spelling, as your headers will need to be spelled and formatted exactly as they are shown here to work. Listed below is an example of how these headers are written:
To view your authentication information, navigate to Settings > Company > API > Overview within your account.
-
The
Authorization
header refers to the API Token found within your LoanPro account. Before including your API Token, you must include the word, "Bearer". For example, if your API Token is "111aaa222bbb", then your header will be written asAuthorization: Bearer 111aaa222bbb
. -
The
Autopal-Instance-ID
comes next, and it refers to your specific tenant ID. This is listed above the API Token as Tenant ID. Using the image above as an example, the header would be written asAutopal-Instance-ID: 5200000
. -
The
Content-Type
is the last necessary header, and it's written asContent-Type: application/json
.
Your completed headers will look something like this:
Authorization: Bearer 1111111111111318dc37271a2617625dd00137b4
Autopal-Instance-ID: 5200000
Content-Type: application/json
See Communicating with the API for additional information regarding API connection.