Bulk update/delete business roles
curl --request POST \
--url http://localhost/mogl/mogl-admin-dashboard/business-role/{status}/{id} \
--header 'Content-Type: application/json' \
--cookie mogl_session= \
--data '
{
"status_update": "A",
"checkbox_val": [
3,
7
],
"is_ajax": "Yes",
"limit_per_page": 10,
"search_filed": "name"
}
'import requests
url = "http://localhost/mogl/mogl-admin-dashboard/business-role/{status}/{id}"
payload = {
"status_update": "A",
"checkbox_val": [3, 7],
"is_ajax": "Yes",
"limit_per_page": 10,
"search_filed": "name"
}
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({
status_update: 'A',
checkbox_val: [3, 7],
is_ajax: 'Yes',
limit_per_page: 10,
search_filed: 'name'
})
};
fetch('http://localhost/mogl/mogl-admin-dashboard/business-role/{status}/{id}', 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-role/{status}/{id}",
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([
'status_update' => 'A',
'checkbox_val' => [
3,
7
],
'is_ajax' => 'Yes',
'limit_per_page' => 10,
'search_filed' => 'name'
]),
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-role/{status}/{id}"
payload := strings.NewReader("{\n \"status_update\": \"A\",\n \"checkbox_val\": [\n 3,\n 7\n ],\n \"is_ajax\": \"Yes\",\n \"limit_per_page\": 10,\n \"search_filed\": \"name\"\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-role/{status}/{id}")
.header("cookie", "mogl_session=")
.header("Content-Type", "application/json")
.body("{\n \"status_update\": \"A\",\n \"checkbox_val\": [\n 3,\n 7\n ],\n \"is_ajax\": \"Yes\",\n \"limit_per_page\": 10,\n \"search_filed\": \"name\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost/mogl/mogl-admin-dashboard/business-role/{status}/{id}")
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 \"status_update\": \"A\",\n \"checkbox_val\": [\n 3,\n 7\n ],\n \"is_ajax\": \"Yes\",\n \"limit_per_page\": 10,\n \"search_filed\": \"name\"\n}"
response = http.request(request)
puts response.read_bodyBulk update/delete business roles
Bulk approve, unapprove or delete business roles.
POST
/
business-role
/
{status}
/
{id}
Bulk update/delete business roles
curl --request POST \
--url http://localhost/mogl/mogl-admin-dashboard/business-role/{status}/{id} \
--header 'Content-Type: application/json' \
--cookie mogl_session= \
--data '
{
"status_update": "A",
"checkbox_val": [
3,
7
],
"is_ajax": "Yes",
"limit_per_page": 10,
"search_filed": "name"
}
'import requests
url = "http://localhost/mogl/mogl-admin-dashboard/business-role/{status}/{id}"
payload = {
"status_update": "A",
"checkbox_val": [3, 7],
"is_ajax": "Yes",
"limit_per_page": 10,
"search_filed": "name"
}
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({
status_update: 'A',
checkbox_val: [3, 7],
is_ajax: 'Yes',
limit_per_page: 10,
search_filed: 'name'
})
};
fetch('http://localhost/mogl/mogl-admin-dashboard/business-role/{status}/{id}', 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-role/{status}/{id}",
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([
'status_update' => 'A',
'checkbox_val' => [
3,
7
],
'is_ajax' => 'Yes',
'limit_per_page' => 10,
'search_filed' => 'name'
]),
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-role/{status}/{id}"
payload := strings.NewReader("{\n \"status_update\": \"A\",\n \"checkbox_val\": [\n 3,\n 7\n ],\n \"is_ajax\": \"Yes\",\n \"limit_per_page\": 10,\n \"search_filed\": \"name\"\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-role/{status}/{id}")
.header("cookie", "mogl_session=")
.header("Content-Type", "application/json")
.body("{\n \"status_update\": \"A\",\n \"checkbox_val\": [\n 3,\n 7\n ],\n \"is_ajax\": \"Yes\",\n \"limit_per_page\": 10,\n \"search_filed\": \"name\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost/mogl/mogl-admin-dashboard/business-role/{status}/{id}")
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 \"status_update\": \"A\",\n \"checkbox_val\": [\n 3,\n 7\n ],\n \"is_ajax\": \"Yes\",\n \"limit_per_page\": 10,\n \"search_filed\": \"name\"\n}"
response = http.request(request)
puts response.read_bodyAuthorizations
Session-based authentication via cookies + CSRF token
Body
application/json
Response
200
Status updated, returns list view