> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs-unsw-v6.advance-uac.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs-unsw-v6.advance-uac.com/_mcp/server.

# Add a tertiary qualfication to an application

POST https://institution/applications/{id}/qualifications
Content-Type: application/json

Appends a qualification (with optional nested subjects) to an existing application. Allowed while the application has not yet been processed.

Reference: https://docs-unsw-v6.advance-uac.com/unsw-advance-institution-api/institution/applications/id/add-a-tertiary-qualfication-to-an-application

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /institution/applications/{id}/qualifications:
    post:
      operationId: Add a tertiary qualfication to an application
      summary: Add a tertiary qualfication to an application
      description: >-
        Appends a qualification (with optional nested subjects) to an existing
        application. Allowed while the application has not yet been processed.
      tags:
        - id
      parameters:
        - name: id
          in: path
          description: '(Required) '
          required: true
          schema:
            type: string
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/institution_applications_{id}_Add a
                  tertiary qualfication to an application_Response_200
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/PostInstitutionApplicationsIdQualificationsRequestBadRequestError
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                type:
                  type: string
                source:
                  type: string
                data:
                  $ref: >-
                    #/components/schemas/InstitutionApplicationsIdQualificationsPostRequestBodyContentApplicationJsonSchemaData
                subjects:
                  type: array
                  items:
                    $ref: >-
                      #/components/schemas/InstitutionApplicationsIdQualificationsPostRequestBodyContentApplicationJsonSchemaSubjectsItems
              required:
                - type
                - source
                - data
                - subjects
servers:
  - url: https:/
    description: https://{baseurl}
components:
  schemas:
    InstitutionApplicationsIdQualificationsPostRequestBodyContentApplicationJsonSchemaData:
      type: object
      properties:
        code:
          type: string
        name:
          type: string
        institutionCode:
          type: string
        institutionName:
          type: string
        completedYear:
          type: integer
        gpa:
          type: number
          format: double
        fieldOfStudy:
          type: string
        completed:
          type: boolean
      required:
        - code
        - name
        - institutionCode
        - institutionName
        - completedYear
        - gpa
        - fieldOfStudy
        - completed
      title: >-
        InstitutionApplicationsIdQualificationsPostRequestBodyContentApplicationJsonSchemaData
    InstitutionApplicationsIdQualificationsPostRequestBodyContentApplicationJsonSchemaSubjectsItemsData:
      type: object
      properties:
        code:
          type: string
        name:
          type: string
        level:
          type: string
        studyLevel:
          type: string
        grade:
          type: string
        yearCompleted:
          type: integer
      required:
        - code
        - name
        - level
        - studyLevel
        - grade
        - yearCompleted
      title: >-
        InstitutionApplicationsIdQualificationsPostRequestBodyContentApplicationJsonSchemaSubjectsItemsData
    InstitutionApplicationsIdQualificationsPostRequestBodyContentApplicationJsonSchemaSubjectsItems:
      type: object
      properties:
        type:
          type: string
        source:
          type: string
        data:
          $ref: >-
            #/components/schemas/InstitutionApplicationsIdQualificationsPostRequestBodyContentApplicationJsonSchemaSubjectsItemsData
      required:
        - type
        - source
        - data
      title: >-
        InstitutionApplicationsIdQualificationsPostRequestBodyContentApplicationJsonSchemaSubjectsItems
    InstitutionApplicationsIdQualificationsPostResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        code:
          type: string
        name:
          type: string
        institutionCode:
          type: string
        institutionName:
          type: string
        completedYear:
          type: integer
        gpa:
          type: number
          format: double
        fieldOfStudy:
          type: string
        completed:
          type: boolean
      required:
        - code
        - name
        - institutionCode
        - institutionName
        - completedYear
        - gpa
        - fieldOfStudy
        - completed
      title: >-
        InstitutionApplicationsIdQualificationsPostResponsesContentApplicationJsonSchemaData
    institution_applications_{id}_Add a tertiary qualfication to an application_Response_200:
      type: object
      properties:
        id:
          type: string
          format: uuid
        type:
          type: string
        parentId:
          description: Any type
        data:
          $ref: >-
            #/components/schemas/InstitutionApplicationsIdQualificationsPostResponsesContentApplicationJsonSchemaData
      required:
        - id
        - type
        - data
      title: >-
        institution_applications_{id}_Add a tertiary qualfication to an
        application_Response_200
    PostInstitutionApplicationsIdQualificationsRequestBadRequestError:
      type: object
      properties:
        status:
          type: integer
        error:
          type: string
      required:
        - status
        - error
      title: PostInstitutionApplicationsIdQualificationsRequestBadRequestError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```

## Examples



**Request**

```json
{
  "type": "tertiary",
  "source": "officer",
  "data": {
    "code": "3778",
    "name": "Bachelor of Computer Science",
    "institutionCode": "UNSW",
    "institutionName": "UNSW Sydney",
    "completedYear": 2024,
    "gpa": 5.8,
    "fieldOfStudy": "Computer Science",
    "completed": true
  },
  "subjects": [
    {
      "type": "subject",
      "source": "officer",
      "data": {
        "code": "COMP1511",
        "name": "Programming Fundamentals",
        "level": "UG",
        "studyLevel": "introductory",
        "grade": "HD",
        "yearCompleted": 2022
      }
    },
    {
      "type": "subject",
      "source": "officer",
      "data": {
        "code": "COMP2521",
        "name": "Data Structures and Algorithms",
        "level": "UG",
        "studyLevel": "intermediate",
        "grade": "DN",
        "yearCompleted": 2023
      }
    }
  ]
}
```

**Response**

```json
{
  "id": "957eea06-d9eb-4430-848f-5d1a1b665ce4",
  "type": "tertiary",
  "data": {
    "code": "3778",
    "name": "Bachelor of Computer Science",
    "institutionCode": "UNSW",
    "institutionName": "UNSW Sydney",
    "completedYear": 2024,
    "gpa": 5.8,
    "fieldOfStudy": "Computer Science",
    "completed": true
  }
}
```

**SDK Code**

```python institution_applications_{id}_Add a tertiary qualfication to an application_example
import requests

url = "https://https/institution/applications/2a22f8dc-ba79-430e-bacd-66fd3d4a7dbb/qualifications"

payload = {
    "type": "tertiary",
    "source": "officer",
    "data": {
        "code": "3778",
        "name": "Bachelor of Computer Science",
        "institutionCode": "UNSW",
        "institutionName": "UNSW Sydney",
        "completedYear": 2024,
        "gpa": 5.8,
        "fieldOfStudy": "Computer Science",
        "completed": True
    },
    "subjects": [
        {
            "type": "subject",
            "source": "officer",
            "data": {
                "code": "COMP1511",
                "name": "Programming Fundamentals",
                "level": "UG",
                "studyLevel": "introductory",
                "grade": "HD",
                "yearCompleted": 2022
            }
        },
        {
            "type": "subject",
            "source": "officer",
            "data": {
                "code": "COMP2521",
                "name": "Data Structures and Algorithms",
                "level": "UG",
                "studyLevel": "intermediate",
                "grade": "DN",
                "yearCompleted": 2023
            }
        }
    ]
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript institution_applications_{id}_Add a tertiary qualfication to an application_example
const url = 'https://https/institution/applications/2a22f8dc-ba79-430e-bacd-66fd3d4a7dbb/qualifications';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"type":"tertiary","source":"officer","data":{"code":"3778","name":"Bachelor of Computer Science","institutionCode":"UNSW","institutionName":"UNSW Sydney","completedYear":2024,"gpa":5.8,"fieldOfStudy":"Computer Science","completed":true},"subjects":[{"type":"subject","source":"officer","data":{"code":"COMP1511","name":"Programming Fundamentals","level":"UG","studyLevel":"introductory","grade":"HD","yearCompleted":2022}},{"type":"subject","source":"officer","data":{"code":"COMP2521","name":"Data Structures and Algorithms","level":"UG","studyLevel":"intermediate","grade":"DN","yearCompleted":2023}}]}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go institution_applications_{id}_Add a tertiary qualfication to an application_example
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://https/institution/applications/2a22f8dc-ba79-430e-bacd-66fd3d4a7dbb/qualifications"

	payload := strings.NewReader("{\n  \"type\": \"tertiary\",\n  \"source\": \"officer\",\n  \"data\": {\n    \"code\": \"3778\",\n    \"name\": \"Bachelor of Computer Science\",\n    \"institutionCode\": \"UNSW\",\n    \"institutionName\": \"UNSW Sydney\",\n    \"completedYear\": 2024,\n    \"gpa\": 5.8,\n    \"fieldOfStudy\": \"Computer Science\",\n    \"completed\": true\n  },\n  \"subjects\": [\n    {\n      \"type\": \"subject\",\n      \"source\": \"officer\",\n      \"data\": {\n        \"code\": \"COMP1511\",\n        \"name\": \"Programming Fundamentals\",\n        \"level\": \"UG\",\n        \"studyLevel\": \"introductory\",\n        \"grade\": \"HD\",\n        \"yearCompleted\": 2022\n      }\n    },\n    {\n      \"type\": \"subject\",\n      \"source\": \"officer\",\n      \"data\": {\n        \"code\": \"COMP2521\",\n        \"name\": \"Data Structures and Algorithms\",\n        \"level\": \"UG\",\n        \"studyLevel\": \"intermediate\",\n        \"grade\": \"DN\",\n        \"yearCompleted\": 2023\n      }\n    }\n  ]\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby institution_applications_{id}_Add a tertiary qualfication to an application_example
require 'uri'
require 'net/http'

url = URI("https://https/institution/applications/2a22f8dc-ba79-430e-bacd-66fd3d4a7dbb/qualifications")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"type\": \"tertiary\",\n  \"source\": \"officer\",\n  \"data\": {\n    \"code\": \"3778\",\n    \"name\": \"Bachelor of Computer Science\",\n    \"institutionCode\": \"UNSW\",\n    \"institutionName\": \"UNSW Sydney\",\n    \"completedYear\": 2024,\n    \"gpa\": 5.8,\n    \"fieldOfStudy\": \"Computer Science\",\n    \"completed\": true\n  },\n  \"subjects\": [\n    {\n      \"type\": \"subject\",\n      \"source\": \"officer\",\n      \"data\": {\n        \"code\": \"COMP1511\",\n        \"name\": \"Programming Fundamentals\",\n        \"level\": \"UG\",\n        \"studyLevel\": \"introductory\",\n        \"grade\": \"HD\",\n        \"yearCompleted\": 2022\n      }\n    },\n    {\n      \"type\": \"subject\",\n      \"source\": \"officer\",\n      \"data\": {\n        \"code\": \"COMP2521\",\n        \"name\": \"Data Structures and Algorithms\",\n        \"level\": \"UG\",\n        \"studyLevel\": \"intermediate\",\n        \"grade\": \"DN\",\n        \"yearCompleted\": 2023\n      }\n    }\n  ]\n}"

response = http.request(request)
puts response.read_body
```

```java institution_applications_{id}_Add a tertiary qualfication to an application_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://https/institution/applications/2a22f8dc-ba79-430e-bacd-66fd3d4a7dbb/qualifications")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"type\": \"tertiary\",\n  \"source\": \"officer\",\n  \"data\": {\n    \"code\": \"3778\",\n    \"name\": \"Bachelor of Computer Science\",\n    \"institutionCode\": \"UNSW\",\n    \"institutionName\": \"UNSW Sydney\",\n    \"completedYear\": 2024,\n    \"gpa\": 5.8,\n    \"fieldOfStudy\": \"Computer Science\",\n    \"completed\": true\n  },\n  \"subjects\": [\n    {\n      \"type\": \"subject\",\n      \"source\": \"officer\",\n      \"data\": {\n        \"code\": \"COMP1511\",\n        \"name\": \"Programming Fundamentals\",\n        \"level\": \"UG\",\n        \"studyLevel\": \"introductory\",\n        \"grade\": \"HD\",\n        \"yearCompleted\": 2022\n      }\n    },\n    {\n      \"type\": \"subject\",\n      \"source\": \"officer\",\n      \"data\": {\n        \"code\": \"COMP2521\",\n        \"name\": \"Data Structures and Algorithms\",\n        \"level\": \"UG\",\n        \"studyLevel\": \"intermediate\",\n        \"grade\": \"DN\",\n        \"yearCompleted\": 2023\n      }\n    }\n  ]\n}")
  .asString();
```

```php institution_applications_{id}_Add a tertiary qualfication to an application_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://https/institution/applications/2a22f8dc-ba79-430e-bacd-66fd3d4a7dbb/qualifications', [
  'body' => '{
  "type": "tertiary",
  "source": "officer",
  "data": {
    "code": "3778",
    "name": "Bachelor of Computer Science",
    "institutionCode": "UNSW",
    "institutionName": "UNSW Sydney",
    "completedYear": 2024,
    "gpa": 5.8,
    "fieldOfStudy": "Computer Science",
    "completed": true
  },
  "subjects": [
    {
      "type": "subject",
      "source": "officer",
      "data": {
        "code": "COMP1511",
        "name": "Programming Fundamentals",
        "level": "UG",
        "studyLevel": "introductory",
        "grade": "HD",
        "yearCompleted": 2022
      }
    },
    {
      "type": "subject",
      "source": "officer",
      "data": {
        "code": "COMP2521",
        "name": "Data Structures and Algorithms",
        "level": "UG",
        "studyLevel": "intermediate",
        "grade": "DN",
        "yearCompleted": 2023
      }
    }
  ]
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp institution_applications_{id}_Add a tertiary qualfication to an application_example
using RestSharp;

var client = new RestClient("https://https/institution/applications/2a22f8dc-ba79-430e-bacd-66fd3d4a7dbb/qualifications");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"type\": \"tertiary\",\n  \"source\": \"officer\",\n  \"data\": {\n    \"code\": \"3778\",\n    \"name\": \"Bachelor of Computer Science\",\n    \"institutionCode\": \"UNSW\",\n    \"institutionName\": \"UNSW Sydney\",\n    \"completedYear\": 2024,\n    \"gpa\": 5.8,\n    \"fieldOfStudy\": \"Computer Science\",\n    \"completed\": true\n  },\n  \"subjects\": [\n    {\n      \"type\": \"subject\",\n      \"source\": \"officer\",\n      \"data\": {\n        \"code\": \"COMP1511\",\n        \"name\": \"Programming Fundamentals\",\n        \"level\": \"UG\",\n        \"studyLevel\": \"introductory\",\n        \"grade\": \"HD\",\n        \"yearCompleted\": 2022\n      }\n    },\n    {\n      \"type\": \"subject\",\n      \"source\": \"officer\",\n      \"data\": {\n        \"code\": \"COMP2521\",\n        \"name\": \"Data Structures and Algorithms\",\n        \"level\": \"UG\",\n        \"studyLevel\": \"intermediate\",\n        \"grade\": \"DN\",\n        \"yearCompleted\": 2023\n      }\n    }\n  ]\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift institution_applications_{id}_Add a tertiary qualfication to an application_example
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "type": "tertiary",
  "source": "officer",
  "data": [
    "code": "3778",
    "name": "Bachelor of Computer Science",
    "institutionCode": "UNSW",
    "institutionName": "UNSW Sydney",
    "completedYear": 2024,
    "gpa": 5.8,
    "fieldOfStudy": "Computer Science",
    "completed": true
  ],
  "subjects": [
    [
      "type": "subject",
      "source": "officer",
      "data": [
        "code": "COMP1511",
        "name": "Programming Fundamentals",
        "level": "UG",
        "studyLevel": "introductory",
        "grade": "HD",
        "yearCompleted": 2022
      ]
    ],
    [
      "type": "subject",
      "source": "officer",
      "data": [
        "code": "COMP2521",
        "name": "Data Structures and Algorithms",
        "level": "UG",
        "studyLevel": "intermediate",
        "grade": "DN",
        "yearCompleted": 2023
      ]
    ]
  ]
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://https/institution/applications/2a22f8dc-ba79-430e-bacd-66fd3d4a7dbb/qualifications")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```