Create or update business size
curl --request POST \
--url http://localhost/mogl/mogl-admin-dashboard/business-size/save \
--header 'Content-Type: application/json' \
--cookie mogl_session= \
--data '
{
"name": "1-10 employees",
"status": "A",
"id": 2
}
'import requests
url = "http://localhost/mogl/mogl-admin-dashboard/business-size/save"
payload = {
"name": "1-10 employees",
"status": "A",
"id": 2
}
headers = {
"cookie": "mogl_session=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {cookie: 'mogl_session=', 'Content-Type': 'application/json'},
body: JSON.stringify({name: '1-10 employees', status: 'A', id: 2})
};
fetch('http://localhost/mogl/mogl-admin-dashboard/business-size/save', 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 => "http://localhost/mogl/mogl-admin-dashboard/business-size/save",
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' => '1-10 employees',
'status' => 'A',
'id' => 2
]),
CURLOPT_COOKIE => "mogl_session=",
CURLOPT_HTTPHEADER => [
"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 := "http://localhost/mogl/mogl-admin-dashboard/business-size/save"
payload := strings.NewReader("{\n \"name\": \"1-10 employees\",\n \"status\": \"A\",\n \"id\": 2\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("cookie", "mogl_session=")
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("http://localhost/mogl/mogl-admin-dashboard/business-size/save")
.header("cookie", "mogl_session=")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"1-10 employees\",\n \"status\": \"A\",\n \"id\": 2\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost/mogl/mogl-admin-dashboard/business-size/save")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["cookie"] = 'mogl_session='
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"1-10 employees\",\n \"status\": \"A\",\n \"id\": 2\n}"
response = http.request(request)
puts response.read_body{
"message": "Data inserted successfully",
"status": "success",
"errors": [
"<string>"
]
}Create or update business size
Create new business size (omit id) or update existing (pass id). Fields: name (required, unique), status (required: A=Active, I=Inactive).
POST
/
business-size
/
save
Create or update business size
curl --request POST \
--url http://localhost/mogl/mogl-admin-dashboard/business-size/save \
--header 'Content-Type: application/json' \
--cookie mogl_session= \
--data '
{
"name": "1-10 employees",
"status": "A",
"id": 2
}
'import requests
url = "http://localhost/mogl/mogl-admin-dashboard/business-size/save"
payload = {
"name": "1-10 employees",
"status": "A",
"id": 2
}
headers = {
"cookie": "mogl_session=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {cookie: 'mogl_session=', 'Content-Type': 'application/json'},
body: JSON.stringify({name: '1-10 employees', status: 'A', id: 2})
};
fetch('http://localhost/mogl/mogl-admin-dashboard/business-size/save', 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 => "http://localhost/mogl/mogl-admin-dashboard/business-size/save",
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' => '1-10 employees',
'status' => 'A',
'id' => 2
]),
CURLOPT_COOKIE => "mogl_session=",
CURLOPT_HTTPHEADER => [
"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 := "http://localhost/mogl/mogl-admin-dashboard/business-size/save"
payload := strings.NewReader("{\n \"name\": \"1-10 employees\",\n \"status\": \"A\",\n \"id\": 2\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("cookie", "mogl_session=")
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("http://localhost/mogl/mogl-admin-dashboard/business-size/save")
.header("cookie", "mogl_session=")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"1-10 employees\",\n \"status\": \"A\",\n \"id\": 2\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost/mogl/mogl-admin-dashboard/business-size/save")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["cookie"] = 'mogl_session='
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"1-10 employees\",\n \"status\": \"A\",\n \"id\": 2\n}"
response = http.request(request)
puts response.read_body{
"message": "Data inserted successfully",
"status": "success",
"errors": [
"<string>"
]
}Authorizations
Session-based authentication via cookies + CSRF token
Body
application/json