Create or update job category skill
curl --request POST \
--url http://localhost/mogl/mogl-admin-dashboard/jobs-category-skills/save \
--header 'Content-Type: application/json' \
--cookie mogl_session= \
--data '
{
"job_category_id": 8,
"name": "React.js",
"status": "A",
"id": 15
}
'import requests
url = "http://localhost/mogl/mogl-admin-dashboard/jobs-category-skills/save"
payload = {
"job_category_id": 8,
"name": "React.js",
"status": "A",
"id": 15
}
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({job_category_id: 8, name: 'React.js', status: 'A', id: 15})
};
fetch('http://localhost/mogl/mogl-admin-dashboard/jobs-category-skills/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/jobs-category-skills/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([
'job_category_id' => 8,
'name' => 'React.js',
'status' => 'A',
'id' => 15
]),
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/jobs-category-skills/save"
payload := strings.NewReader("{\n \"job_category_id\": 8,\n \"name\": \"React.js\",\n \"status\": \"A\",\n \"id\": 15\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/jobs-category-skills/save")
.header("cookie", "mogl_session=")
.header("Content-Type", "application/json")
.body("{\n \"job_category_id\": 8,\n \"name\": \"React.js\",\n \"status\": \"A\",\n \"id\": 15\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost/mogl/mogl-admin-dashboard/jobs-category-skills/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 \"job_category_id\": 8,\n \"name\": \"React.js\",\n \"status\": \"A\",\n \"id\": 15\n}"
response = http.request(request)
puts response.read_body{
"message": "Data inserted successfully",
"status": "success",
"errors": [
"<string>"
]
}Create or update job category skill
Create new skill under a job category (omit id) or update existing (pass id). Fields: job_category_id (required), name (required, unique per category), status (required: A=Active, I=Inactive).
POST
/
jobs-category-skills
/
save
Create or update job category skill
curl --request POST \
--url http://localhost/mogl/mogl-admin-dashboard/jobs-category-skills/save \
--header 'Content-Type: application/json' \
--cookie mogl_session= \
--data '
{
"job_category_id": 8,
"name": "React.js",
"status": "A",
"id": 15
}
'import requests
url = "http://localhost/mogl/mogl-admin-dashboard/jobs-category-skills/save"
payload = {
"job_category_id": 8,
"name": "React.js",
"status": "A",
"id": 15
}
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({job_category_id: 8, name: 'React.js', status: 'A', id: 15})
};
fetch('http://localhost/mogl/mogl-admin-dashboard/jobs-category-skills/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/jobs-category-skills/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([
'job_category_id' => 8,
'name' => 'React.js',
'status' => 'A',
'id' => 15
]),
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/jobs-category-skills/save"
payload := strings.NewReader("{\n \"job_category_id\": 8,\n \"name\": \"React.js\",\n \"status\": \"A\",\n \"id\": 15\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/jobs-category-skills/save")
.header("cookie", "mogl_session=")
.header("Content-Type", "application/json")
.body("{\n \"job_category_id\": 8,\n \"name\": \"React.js\",\n \"status\": \"A\",\n \"id\": 15\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost/mogl/mogl-admin-dashboard/jobs-category-skills/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 \"job_category_id\": 8,\n \"name\": \"React.js\",\n \"status\": \"A\",\n \"id\": 15\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