POST
request. The broker's details, including personal information, taxation identifiers, brokerage commission structure, address, and contact details, must be provided in the request body.ApiKey: ********************
{
"broker_name": "Joan22",
"gstin": null,
"pan": null,
"entity_type": null,
"brokerage_for_sale": 10, // in %
"brokerage_for_sale_type": 1, //invoive value=1, taxable value=2
"brokerage_for_purchase": 5,
"brokerage_for_purchase_type": 1, //invoive value=1, taxable value=2
// address
"address_1": null,
"address_2": null,
"country_id": 1,
"state_id": 1,
"city_id": 1,
"pin_code": 1,
//contact details
"contact_detail_name": "test",
"region_iso": "in",
"region_code": "91",
"phone": 9541021036,
"email": null
}
curl --location --request POST 'https://app.hisabkitab.co/third-party/broker-masters' \
--header 'Content-Type: application/json' \
--header 'ApiKey;' \
--data-raw '{
"broker_name": "Joan22",
"gstin": null,
"pan": null,
"entity_type": null,
"brokerage_for_sale": 10, // in %
"brokerage_for_sale_type": 1, //invoive value=1, taxable value=2
"brokerage_for_purchase": 5,
"brokerage_for_purchase_type": 1, //invoive value=1, taxable value=2
// address
"address_1": null,
"address_2": null,
"country_id": 1,
"state_id": 1,
"city_id": 1,
"pin_code": 1,
//contact details
"contact_detail_name": "test",
"region_iso": "in",
"region_code": "91",
"phone": 9541021036,
"email": null
}'
{
"data": {
"id": 3,
"broker_name": "Joan",
"gstin": null,
"pan": null,
"company_id": 6,
"entity_type": null,
"contact_detail_name": "test",
"email": null,
"region_iso": "in",
"region_code": "91",
"phone": 9541021036,
"brokerage_for_sale": 10,
"brokerage_for_purchase": 5,
"brokerage_for_sale_type": 1,
"brokerage_for_purchase_type": 1,
"via_api": true,
"created_at": "2025-02-19T12:51:43.000000Z",
"updated_at": "2025-02-19T12:51:43.000000Z"
},
"success": true,
"message": "Broker Master Created Successfully."
}