> 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.

# List programs that accept credit applications

GET https://institution/programs/accepting-applications

The subset of the institution's programs an application may be submitted against - those with an assessment workflow configured. Submit using a `code` + `year` returned here; submitting against any other program is rejected during processing.

Reference: https://docs-unsw-v6.advance-uac.com/unsw-advance-institution-api/institution/programs/list-programs-that-accept-credit-applications

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /institution/programs/accepting-applications:
    get:
      operationId: List programs that accept credit applications
      summary: List programs that accept credit applications
      description: >-
        The subset of the institution's programs an application may be submitted
        against - those with an assessment workflow configured. Submit using a
        `code` + `year` returned here; submitting against any other program is
        rejected during processing.
      tags:
        - programs
      parameters:
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/InstitutionProgramsAcceptingApplicationsGetResponsesContentApplicationJsonSchemaItems
servers:
  - url: https:/
    description: https://{baseurl}
components:
  schemas:
    InstitutionProgramsAcceptingApplicationsGetResponsesContentApplicationJsonSchemaItems:
      type: object
      properties:
        id:
          type: string
          format: uuid
        code:
          type: string
        year:
          type: integer
        name:
          type: string
      required:
        - id
        - code
        - year
        - name
      title: >-
        InstitutionProgramsAcceptingApplicationsGetResponsesContentApplicationJsonSchemaItems
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```

## Examples



**Response**

```json
[
  {
    "id": "41052ca5-e143-4858-bf97-c913b9652591",
    "code": "3502",
    "year": 2026,
    "name": "Bachelor of Commerce"
  },
  {
    "id": "7d6ff658-db1d-43ed-9240-4f36a9370553",
    "code": "3981",
    "year": 2026,
    "name": "Bachelor of Aviation (Management)"
  },
  {
    "id": "51fb17e1-cb70-40c1-ab15-b758c22cf63a",
    "code": "4825",
    "year": 2026,
    "name": "Bachelor of Design (Integrated Design)"
  },
  {
    "id": "a95e8735-2321-4680-8ef1-bb996c25a4f0",
    "code": "8429",
    "year": 2026,
    "name": "Master of Applied Economics"
  },
  {
    "id": "ec2420e6-05ed-4e7a-9bf9-938e774b3f99",
    "code": "9014",
    "year": 2026,
    "name": "Master of Women's Health Medicine"
  },
  {
    "id": "6831ed48-bb69-4978-90c3-b1305a7b3716",
    "code": "9065",
    "year": 2026,
    "name": "Master of Reproductive Medicine"
  }
]
```

**SDK Code**

```python institution_programs_List programs that accept credit applications_example
import requests

url = "https://https/institution/programs/accepting-applications"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript institution_programs_List programs that accept credit applications_example
const url = 'https://https/institution/programs/accepting-applications';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

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

```go institution_programs_List programs that accept credit applications_example
package main

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

func main() {

	url := "https://https/institution/programs/accepting-applications"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

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

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

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

}
```

```ruby institution_programs_List programs that accept credit applications_example
require 'uri'
require 'net/http'

url = URI("https://https/institution/programs/accepting-applications")

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

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

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

```java institution_programs_List programs that accept credit applications_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://https/institution/programs/accepting-applications")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php institution_programs_List programs that accept credit applications_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://https/institution/programs/accepting-applications', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

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

```csharp institution_programs_List programs that accept credit applications_example
using RestSharp;

var client = new RestClient("https://https/institution/programs/accepting-applications");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift institution_programs_List programs that accept credit applications_example
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://https/institution/programs/accepting-applications")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

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()
```