curl --request POST \
--url https://api.nextlevelmca.com/v1/lenders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"status": "active",
"paper_grades": [],
"tags": [
"<string>"
],
"products": {
"mca": true,
"term_loan": true,
"loc": true,
"equipment": true,
"factoring": true
},
"use_api": true,
"contact_name": "<string>",
"email": "<string>",
"phone": "<string>",
"submissions_emails": [
"<string>"
],
"payment_terms": "<string>",
"clawback_period": 1,
"default_commission": 50,
"notes": "<string>"
}
'import requests
url = "https://api.nextlevelmca.com/v1/lenders"
payload = {
"name": "<string>",
"status": "active",
"paper_grades": [],
"tags": ["<string>"],
"products": {
"mca": True,
"term_loan": True,
"loc": True,
"equipment": True,
"factoring": True
},
"use_api": True,
"contact_name": "<string>",
"email": "<string>",
"phone": "<string>",
"submissions_emails": ["<string>"],
"payment_terms": "<string>",
"clawback_period": 1,
"default_commission": 50,
"notes": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
status: 'active',
paper_grades: [],
tags: ['<string>'],
products: {mca: true, term_loan: true, loc: true, equipment: true, factoring: true},
use_api: true,
contact_name: '<string>',
email: '<string>',
phone: '<string>',
submissions_emails: ['<string>'],
payment_terms: '<string>',
clawback_period: 1,
default_commission: 50,
notes: '<string>'
})
};
fetch('https://api.nextlevelmca.com/v1/lenders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nextlevelmca.com/v1/lenders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'status' => 'active',
'paper_grades' => [
],
'tags' => [
'<string>'
],
'products' => [
'mca' => true,
'term_loan' => true,
'loc' => true,
'equipment' => true,
'factoring' => true
],
'use_api' => true,
'contact_name' => '<string>',
'email' => '<string>',
'phone' => '<string>',
'submissions_emails' => [
'<string>'
],
'payment_terms' => '<string>',
'clawback_period' => 1,
'default_commission' => 50,
'notes' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.nextlevelmca.com/v1/lenders"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"status\": \"active\",\n \"paper_grades\": [],\n \"tags\": [\n \"<string>\"\n ],\n \"products\": {\n \"mca\": true,\n \"term_loan\": true,\n \"loc\": true,\n \"equipment\": true,\n \"factoring\": true\n },\n \"use_api\": true,\n \"contact_name\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"submissions_emails\": [\n \"<string>\"\n ],\n \"payment_terms\": \"<string>\",\n \"clawback_period\": 1,\n \"default_commission\": 50,\n \"notes\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.nextlevelmca.com/v1/lenders")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"status\": \"active\",\n \"paper_grades\": [],\n \"tags\": [\n \"<string>\"\n ],\n \"products\": {\n \"mca\": true,\n \"term_loan\": true,\n \"loc\": true,\n \"equipment\": true,\n \"factoring\": true\n },\n \"use_api\": true,\n \"contact_name\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"submissions_emails\": [\n \"<string>\"\n ],\n \"payment_terms\": \"<string>\",\n \"clawback_period\": 1,\n \"default_commission\": 50,\n \"notes\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nextlevelmca.com/v1/lenders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"status\": \"active\",\n \"paper_grades\": [],\n \"tags\": [\n \"<string>\"\n ],\n \"products\": {\n \"mca\": true,\n \"term_loan\": true,\n \"loc\": true,\n \"equipment\": true,\n \"factoring\": true\n },\n \"use_api\": true,\n \"contact_name\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"submissions_emails\": [\n \"<string>\"\n ],\n \"payment_terms\": \"<string>\",\n \"clawback_period\": 1,\n \"default_commission\": 50,\n \"notes\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"name": "<string>",
"status": "active",
"paper_grades": [
"A"
],
"tags": [
"<string>"
],
"products": {
"mca": true,
"term_loan": true,
"loc": true,
"equipment": true,
"factoring": true
},
"use_api": true,
"contact_name": "<string>",
"email": "<string>",
"phone": "<string>",
"submissions_emails": [
"<string>"
],
"payment_terms": "<string>",
"clawback_period": 123,
"clawback_unit": "days",
"default_commission": 123,
"notes": "<string>",
"criteria_count": 123,
"criteria_updated_at": "<string>",
"kpis": {
"submissions_count": 123,
"decided_count": 123,
"approved_count": 123,
"approval_rate": 123,
"avg_deal_size": 123,
"total_funded": 123,
"total_advances": 123,
"last_submission_at": "<string>"
},
"created_at": "<string>",
"updated_at": "<string>"
},
"meta": {}
}{
"error": {
"type": "validation_error",
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>"
}
}{
"error": {
"type": "validation_error",
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>"
}
}{
"error": {
"type": "validation_error",
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>"
}
}{
"error": {
"type": "validation_error",
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>"
}
}{
"error": {
"type": "validation_error",
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>"
}
}Create a lender
Adds a lender to the location. Names are unique per location (409 duplicate_lender). Set eligibility rules afterwards with PUT /lenders/{id}/criteria.
curl --request POST \
--url https://api.nextlevelmca.com/v1/lenders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"status": "active",
"paper_grades": [],
"tags": [
"<string>"
],
"products": {
"mca": true,
"term_loan": true,
"loc": true,
"equipment": true,
"factoring": true
},
"use_api": true,
"contact_name": "<string>",
"email": "<string>",
"phone": "<string>",
"submissions_emails": [
"<string>"
],
"payment_terms": "<string>",
"clawback_period": 1,
"default_commission": 50,
"notes": "<string>"
}
'import requests
url = "https://api.nextlevelmca.com/v1/lenders"
payload = {
"name": "<string>",
"status": "active",
"paper_grades": [],
"tags": ["<string>"],
"products": {
"mca": True,
"term_loan": True,
"loc": True,
"equipment": True,
"factoring": True
},
"use_api": True,
"contact_name": "<string>",
"email": "<string>",
"phone": "<string>",
"submissions_emails": ["<string>"],
"payment_terms": "<string>",
"clawback_period": 1,
"default_commission": 50,
"notes": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
status: 'active',
paper_grades: [],
tags: ['<string>'],
products: {mca: true, term_loan: true, loc: true, equipment: true, factoring: true},
use_api: true,
contact_name: '<string>',
email: '<string>',
phone: '<string>',
submissions_emails: ['<string>'],
payment_terms: '<string>',
clawback_period: 1,
default_commission: 50,
notes: '<string>'
})
};
fetch('https://api.nextlevelmca.com/v1/lenders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nextlevelmca.com/v1/lenders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'status' => 'active',
'paper_grades' => [
],
'tags' => [
'<string>'
],
'products' => [
'mca' => true,
'term_loan' => true,
'loc' => true,
'equipment' => true,
'factoring' => true
],
'use_api' => true,
'contact_name' => '<string>',
'email' => '<string>',
'phone' => '<string>',
'submissions_emails' => [
'<string>'
],
'payment_terms' => '<string>',
'clawback_period' => 1,
'default_commission' => 50,
'notes' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.nextlevelmca.com/v1/lenders"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"status\": \"active\",\n \"paper_grades\": [],\n \"tags\": [\n \"<string>\"\n ],\n \"products\": {\n \"mca\": true,\n \"term_loan\": true,\n \"loc\": true,\n \"equipment\": true,\n \"factoring\": true\n },\n \"use_api\": true,\n \"contact_name\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"submissions_emails\": [\n \"<string>\"\n ],\n \"payment_terms\": \"<string>\",\n \"clawback_period\": 1,\n \"default_commission\": 50,\n \"notes\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.nextlevelmca.com/v1/lenders")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"status\": \"active\",\n \"paper_grades\": [],\n \"tags\": [\n \"<string>\"\n ],\n \"products\": {\n \"mca\": true,\n \"term_loan\": true,\n \"loc\": true,\n \"equipment\": true,\n \"factoring\": true\n },\n \"use_api\": true,\n \"contact_name\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"submissions_emails\": [\n \"<string>\"\n ],\n \"payment_terms\": \"<string>\",\n \"clawback_period\": 1,\n \"default_commission\": 50,\n \"notes\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nextlevelmca.com/v1/lenders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"status\": \"active\",\n \"paper_grades\": [],\n \"tags\": [\n \"<string>\"\n ],\n \"products\": {\n \"mca\": true,\n \"term_loan\": true,\n \"loc\": true,\n \"equipment\": true,\n \"factoring\": true\n },\n \"use_api\": true,\n \"contact_name\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"submissions_emails\": [\n \"<string>\"\n ],\n \"payment_terms\": \"<string>\",\n \"clawback_period\": 1,\n \"default_commission\": 50,\n \"notes\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"name": "<string>",
"status": "active",
"paper_grades": [
"A"
],
"tags": [
"<string>"
],
"products": {
"mca": true,
"term_loan": true,
"loc": true,
"equipment": true,
"factoring": true
},
"use_api": true,
"contact_name": "<string>",
"email": "<string>",
"phone": "<string>",
"submissions_emails": [
"<string>"
],
"payment_terms": "<string>",
"clawback_period": 123,
"clawback_unit": "days",
"default_commission": 123,
"notes": "<string>",
"criteria_count": 123,
"criteria_updated_at": "<string>",
"kpis": {
"submissions_count": 123,
"decided_count": 123,
"approved_count": 123,
"approval_rate": 123,
"avg_deal_size": 123,
"total_funded": 123,
"total_advances": 123,
"last_submission_at": "<string>"
},
"created_at": "<string>",
"updated_at": "<string>"
},
"meta": {}
}{
"error": {
"type": "validation_error",
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>"
}
}{
"error": {
"type": "validation_error",
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>"
}
}{
"error": {
"type": "validation_error",
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>"
}
}{
"error": {
"type": "validation_error",
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>"
}
}{
"error": {
"type": "validation_error",
"message": "<string>",
"request_id": "<string>",
"code": "<string>",
"param": "<string>"
}
}Authorizations
API key (nlmca_live_…) or OAuth access token
Body
Lender name. Must be unique within the location (409 duplicate_lender).
255Inactive lenders are excluded from matching.
active, inactive Paper grades the lender buys.
A, B, C, D Free-form tags.
Products the lender writes. Defaults to { mca: true }.
Show child attributes
Show child attributes
True when submissions go through an API integration rather than email.
Primary contact name at the lender.
255Contact email.
Contact phone.
50Addresses deal submissions are emailed to. Required before the lender can receive submissions.
Commission payment terms, e.g. Net 30.
255Clawback window length.
x >= 0Unit of clawback_period.
days, weeks, months Default commission percentage (0–100).
0 <= x <= 100Internal notes.
5000Was this page helpful?