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"
}Mark or unmark partner interest in an external job applicant. Updates the partner_not_interested flag on the application record.
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.
JWT Bearer token authentication. Use the /api/login endpoint to obtain a token.