POST
/
api
/
v1
/
profiles
/
{profile_id}
/
faculty_activities
Create a faculty activity for a profile
curl --request POST \
  --url https://api.scholarlysoftware.com/api/v1/profiles/{profile_id}/faculty_activities \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "<string>",
    "attributes": {
      "kind": "<string>",
      "properties": {},
      "external_id": "<string>"
    }
  }
}'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "kind": "<string>",
      "properties": {}
    }
  }
}

Headers

Authorization
string
required

Path Parameters

profile_id
string
required

Profile UUID

Body

application/vnd.api+json

Response

201
application/vnd.api+json

faculty activity created with external_id

The response is of type object.