manage alumni ability. Creates a job post that is immediately APPROVED (no author alumni). Returns 201 with the created post.core.session_token: ********************Authorization: Bearer ********************curl --location '/alumni/job-posts' \
--header 'Content-Type: application/json' \
--data '{
"title": "string",
"company": "string",
"location": "string",
"employmentType": "FULL_TIME",
"description": "string",
"applyUrl": "http://example.com",
"contact": "string"
}'{
"success": true,
"message": "string",
"meta": {
"page": 0,
"limit": 0,
"total": 0
},
"errors": [
null
],
"result": {
"id": "string",
"title": "string",
"company": "string",
"location": "string",
"employmentType": "FULL_TIME",
"description": "string",
"applyUrl": "string",
"contact": "string",
"status": "PENDING",
"rejectionNote": "string",
"createdAt": "2019-08-24T14:15:22.123Z",
"alumni": {
"id": "string",
"name": "string"
}
}
}