Skip to main content
POST
/
external
/
markExternalInterest
Mark interest in external applicant
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/external/markExternalInterest \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "abc123def456",
  "application_id": 456,
  "statusChange": "Y"
}
'
{
  "status": "success",
  "message": "Interest updated successfully"
}

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

Authorization
string
header
required

JWT Bearer token authentication. Use the /api/login endpoint to obtain a token.

Body

application/json
token
string
required

External job link token (required by middleware)

Example:

"abc123def456"

application_id
integer
required

Application record ID (partner_job_applied_mappings.id)

Example:

456

statusChange
enum<string>
required

Y = interested, N = not interested

Available options:
Y,
N
Example:

"Y"

Response

200 - application/json

Interest status updated

status
string
Example:

"success"

message
string
Example:

"Interest updated successfully"