Skip to main content
POST
/
saveMyInterests
Save athlete business interests
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/saveMyInterests \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "industry_arr": [
    16,
    18
  ],
  "partner_arr": [],
  "skills_arr": [
    "Test skill",
    "Another Skill"
  ]
}
'

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
industry_arr
integer[]

Business category IDs

Example:
[16, 18]
partner_arr
object[] | null

Array of partner objects with id

Example:
[]
skills_arr
string[]

Skill name strings

Example:
["Test skill", "Another Skill"]

Response

200

Interests saved