Skip to main content
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
}
'
{
  "message": "Data inserted successfully",
  "status": "success",
  "errors": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.mogl.online/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

mogl_session
string
cookie
required

Session-based authentication via cookies + CSRF token

Body

application/json
job_category_id
integer
required

Parent job category ID

Example:

8

name
string
required

Skill name (unique per category)

Example:

"React.js"

status
enum<string>
required

A=Active, I=Inactive

Available options:
A,
I
Example:

"A"

id
integer

Pass ID to update existing, omit for new

Example:

15

Response

Job category skill saved

message
string
Example:

"Data inserted successfully"

status
string
Example:

"success"

errors
string[]