(DEPRECATED) Unregister a profile from a course on their transcript

Deprecated. Unregisters a single course from a transcript. Use POST /transcript/courses/unregister instead, which supports bulk unregistration and is the current recommended endpoint.

Path Parameters
  • profile_id
    Type: string
    required

    Unique identifier of the profile.

  • role_id
    Type: string
    required

    Unique identifier of the role.

  • transcript_id
    Type: string
    required

    Unique identifier of the transcript.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for post/apis/profiles/profiles/{profile_id}/roles/{role_id}/transcript/{transcript_id}/unregister
curl https://school.fullfabric.cloud/apis/profiles/profiles/507f1f77bcf86cd799439011/roles/507f1f77bcf86cd799439011/transcript/507f1f77bcf86cd799439011/unregister \
  --request POST \
  --header 'FF-Auth: YOUR_SECRET_TOKEN'
{
  "id": "6979e931f398a61715789adb",
  "study_plan_id": "664cc3fe9a52af742f49d429",
  "profile_id": "6385bdd4976a7719120108e9",
  "created_at": 1709597233,
  "updated_at": 1776330830,
  "transcript_subjects": [
    {
      "id": "6979e931f398a61715789adc",
      "course_type": "Core",
      "credits": 12,
      "course_id": "6385baad976a7719120008ca",
      "subject_id": "6385baad976a7719120008ca",
      "counts_towards_curricular_grade": true,
      "counts_towards_total_credits": true
    }
  ],
  "registrations": []
}