post
http://{{url}}/api/method/emotive_app.api.crm.credit_app.create_credit_application
This endpoint is used to create a new Credit Application in the system. It accepts details about the party, customer type, and lender, and returns the created credit application's unique information.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Request Method
- POST
End Point
{{url}}/api/method/emotive_app.api.crm.credit_app.create_credit_application
Example Request
{
"party_name": "2025-00051",
"customer_type": "Individual"
}Response Explanation
A successful response returns HTTP status 200 with JSON content containing the details of the newly created credit application.
Response Body Parameters
- name (
string)
Unique Credit Application number. - applicant_name (
string)
Unique identifier of the applicant.
Example Response
{
"name": "C-2026-01-00006",
"applicant_name": "2026-00040"
}