# PatientClaimInteractive - Specialist

POST https://Medicare/patientclaiminteractive/specialist/v1
Content-Type: application/json

### Patient claim interactive - specialist

Reference: https://developers.rebateright.com.au/rebate-right/advanced/claiming/patient-claim-interactive/patient-claim-interactive-specialist

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /Medicare/patientclaiminteractive/specialist/v1:
    post:
      operationId: patient-claim-interactive-specialist
      summary: PatientClaimInteractive - Specialist
      description: '### Patient claim interactive - specialist'
      tags:
        - >-
          subpackage_advanced.subpackage_advanced/claiming.subpackage_advanced/claiming/patientClaimInteractive
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
        - name: x-minor-id
          in: header
          required: false
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Advanced_Claiming_Patient Claim
                  Interactive_PatientClaimInteractive - Specialist_Response_200
      requestBody:
        content:
          application/json:
            schema:
              type: string
servers:
  - url: https:/
components:
  schemas:
    MedicarePatientclaiminteractiveSpecialistV1PostResponsesContentApplicationJsonSchemaClaimAssessmentError:
      type: object
      properties:
        code:
          type: integer
        text:
          type: string
      required:
        - code
        - text
      title: >-
        MedicarePatientclaiminteractiveSpecialistV1PostResponsesContentApplicationJsonSchemaClaimAssessmentError
    MedicarePatientclaiminteractiveSpecialistV1PostResponsesContentApplicationJsonSchemaClaimAssessment:
      type: object
      properties:
        error:
          $ref: >-
            #/components/schemas/MedicarePatientclaiminteractiveSpecialistV1PostResponsesContentApplicationJsonSchemaClaimAssessmentError
        claimId:
          type: string
      required:
        - error
        - claimId
      title: >-
        MedicarePatientclaiminteractiveSpecialistV1PostResponsesContentApplicationJsonSchemaClaimAssessment
    Advanced_Claiming_Patient Claim Interactive_PatientClaimInteractive - Specialist_Response_200:
      type: object
      properties:
        status:
          type: string
        claimAssessment:
          $ref: >-
            #/components/schemas/MedicarePatientclaiminteractiveSpecialistV1PostResponsesContentApplicationJsonSchemaClaimAssessment
      required:
        - status
        - claimAssessment
      title: >-
        Advanced_Claiming_Patient Claim Interactive_PatientClaimInteractive -
        Specialist_Response_200
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

```

## SDK Code Examples

```python 6.1.2.1
import requests

url = "https://https/Medicare/patientclaiminteractive/specialist/v1"

headers = {
    "x-minor-id": "{{MinorId}}",
    "x-api-key": "<apiKey>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript 6.1.2.1
const url = 'https://https/Medicare/patientclaiminteractive/specialist/v1';
const options = {
  method: 'POST',
  headers: {
    'x-minor-id': '{{MinorId}}',
    'x-api-key': '<apiKey>',
    'Content-Type': 'application/json'
  },
  body: undefined
};

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

```go 6.1.2.1
package main

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

func main() {

	url := "https://https/Medicare/patientclaiminteractive/specialist/v1"

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

	req.Header.Add("x-minor-id", "{{MinorId}}")
	req.Header.Add("x-api-key", "<apiKey>")
	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 6.1.2.1
require 'uri'
require 'net/http'

url = URI("https://https/Medicare/patientclaiminteractive/specialist/v1")

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

request = Net::HTTP::Post.new(url)
request["x-minor-id"] = '{{MinorId}}'
request["x-api-key"] = '<apiKey>'
request["Content-Type"] = 'application/json'

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

```java 6.1.2.1
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://https/Medicare/patientclaiminteractive/specialist/v1")
  .header("x-minor-id", "{{MinorId}}")
  .header("x-api-key", "<apiKey>")
  .header("Content-Type", "application/json")
  .asString();
```

```php 6.1.2.1
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://https/Medicare/patientclaiminteractive/specialist/v1', [
  'headers' => [
    'Content-Type' => 'application/json',
    'x-api-key' => '<apiKey>',
    'x-minor-id' => '{{MinorId}}',
  ],
]);

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

```csharp 6.1.2.1
using RestSharp;

var client = new RestClient("https://https/Medicare/patientclaiminteractive/specialist/v1");
var request = new RestRequest(Method.POST);
request.AddHeader("x-minor-id", "{{MinorId}}");
request.AddHeader("x-api-key", "<apiKey>");
request.AddHeader("Content-Type", "application/json");
IRestResponse response = client.Execute(request);
```

```swift 6.1.2.1
import Foundation

let headers = [
  "x-minor-id": "{{MinorId}}",
  "x-api-key": "<apiKey>",
  "Content-Type": "application/json"
]

let request = NSMutableURLRequest(url: NSURL(string: "https://https/Medicare/patientclaiminteractive/specialist/v1")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
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()
```

```python Assessed
import requests

url = "https://https/Medicare/patientclaiminteractive/specialist/v1"

headers = {
    "x-minor-id": "{{MinorId}}",
    "x-api-key": "<apiKey>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript Assessed
const url = 'https://https/Medicare/patientclaiminteractive/specialist/v1';
const options = {
  method: 'POST',
  headers: {
    'x-minor-id': '{{MinorId}}',
    'x-api-key': '<apiKey>',
    'Content-Type': 'application/json'
  },
  body: undefined
};

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

```go Assessed
package main

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

func main() {

	url := "https://https/Medicare/patientclaiminteractive/specialist/v1"

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

	req.Header.Add("x-minor-id", "{{MinorId}}")
	req.Header.Add("x-api-key", "<apiKey>")
	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 Assessed
require 'uri'
require 'net/http'

url = URI("https://https/Medicare/patientclaiminteractive/specialist/v1")

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

request = Net::HTTP::Post.new(url)
request["x-minor-id"] = '{{MinorId}}'
request["x-api-key"] = '<apiKey>'
request["Content-Type"] = 'application/json'

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

```java Assessed
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://https/Medicare/patientclaiminteractive/specialist/v1")
  .header("x-minor-id", "{{MinorId}}")
  .header("x-api-key", "<apiKey>")
  .header("Content-Type", "application/json")
  .asString();
```

```php Assessed
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://https/Medicare/patientclaiminteractive/specialist/v1', [
  'headers' => [
    'Content-Type' => 'application/json',
    'x-api-key' => '<apiKey>',
    'x-minor-id' => '{{MinorId}}',
  ],
]);

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

```csharp Assessed
using RestSharp;

var client = new RestClient("https://https/Medicare/patientclaiminteractive/specialist/v1");
var request = new RestRequest(Method.POST);
request.AddHeader("x-minor-id", "{{MinorId}}");
request.AddHeader("x-api-key", "<apiKey>");
request.AddHeader("Content-Type", "application/json");
IRestResponse response = client.Execute(request);
```

```swift Assessed
import Foundation

let headers = [
  "x-minor-id": "{{MinorId}}",
  "x-api-key": "<apiKey>",
  "Content-Type": "application/json"
]

let request = NSMutableURLRequest(url: NSURL(string: "https://https/Medicare/patientclaiminteractive/specialist/v1")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
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()
```

```python Rejected
import requests

url = "https://https/Medicare/patientclaiminteractive/specialist/v1"

headers = {
    "x-minor-id": "{{MinorId}}",
    "x-api-key": "<apiKey>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript Rejected
const url = 'https://https/Medicare/patientclaiminteractive/specialist/v1';
const options = {
  method: 'POST',
  headers: {
    'x-minor-id': '{{MinorId}}',
    'x-api-key': '<apiKey>',
    'Content-Type': 'application/json'
  },
  body: undefined
};

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

```go Rejected
package main

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

func main() {

	url := "https://https/Medicare/patientclaiminteractive/specialist/v1"

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

	req.Header.Add("x-minor-id", "{{MinorId}}")
	req.Header.Add("x-api-key", "<apiKey>")
	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 Rejected
require 'uri'
require 'net/http'

url = URI("https://https/Medicare/patientclaiminteractive/specialist/v1")

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

request = Net::HTTP::Post.new(url)
request["x-minor-id"] = '{{MinorId}}'
request["x-api-key"] = '<apiKey>'
request["Content-Type"] = 'application/json'

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

```java Rejected
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://https/Medicare/patientclaiminteractive/specialist/v1")
  .header("x-minor-id", "{{MinorId}}")
  .header("x-api-key", "<apiKey>")
  .header("Content-Type", "application/json")
  .asString();
```

```php Rejected
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://https/Medicare/patientclaiminteractive/specialist/v1', [
  'headers' => [
    'Content-Type' => 'application/json',
    'x-api-key' => '<apiKey>',
    'x-minor-id' => '{{MinorId}}',
  ],
]);

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

```csharp Rejected
using RestSharp;

var client = new RestClient("https://https/Medicare/patientclaiminteractive/specialist/v1");
var request = new RestRequest(Method.POST);
request.AddHeader("x-minor-id", "{{MinorId}}");
request.AddHeader("x-api-key", "<apiKey>");
request.AddHeader("Content-Type", "application/json");
IRestResponse response = client.Execute(request);
```

```swift Rejected
import Foundation

let headers = [
  "x-minor-id": "{{MinorId}}",
  "x-api-key": "<apiKey>",
  "Content-Type": "application/json"
]

let request = NSMutableURLRequest(url: NSURL(string: "https://https/Medicare/patientclaiminteractive/specialist/v1")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
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()
```

```python Advanced_Claiming_Patient Claim Interactive_PatientClaimInteractive - Specialist_example
import requests

url = "https://https/Medicare/patientclaiminteractive/specialist/v1"

payload = "{
    //\"correlationId\": \"urn:uuid:MDE00000e714ca2feb1742a2\",
    \"patientClaimInteractive\": {
        \"accountPaidInd\": \"N\",
        //\"accountReferenceId\": \"ACC123\",
        \"authorisationDate\": \"2026-04-01\",
        \"submissionAuthorityInd\": \"Y\",
        // \"referral\": {
        //   \"provider\": {
        //     \"providerNumber\": \"2447791K\"
        //   },
        //   \"issueDate\": \"2025-07-15\",
        //   \"periodCode\": \"S\",
        //   \"typeCode\": \"S\"
        //   //\"period\": \"6\",
        // },
        \"referralOverrideCode\": \"H\",
        \"serviceProvider\": {
            \"providerNumber\": \"2447781L\"
        },
        \"patient\": {
            \"identity\": {
                \"dateOfBirth\": \"1986-12-18\",
                \"familyName\": \"FLETCHER\",
                \"givenName\": \"Edmond\"
                //\"secondInitial\": \"\",
                // \"sex\": \"1\"
            },
            \"medicare\": {
                \"memberNumber\": \"4951525561\",
                \"memberRefNumber\": \"2\"
            }
        },
        \"claimant\": {
           \"identity\": {
                \"dateOfBirth\": \"2009-02-08\",
                \"familyName\": \"FLETCHER\",
                \"givenName\": \"Clint\"
            },
            \"medicare\": {
                \"memberNumber\": \"4951525561\",
                \"memberRefNumber\": \"3\"
            }
              ,\"contactDetails\": {
                \"name\": \"Jane Doe\",
                \"phoneNumber\": \"0412345678\",
                \"emailAddress\": \"jane.doe@example.com\"
              },
            
            // ,\"eftDetails\": {
            //     \"accountName\": \"Jane Doe\",
            //     \"accountNumber\": \"123456789\",
            //     \"bsbCode\": \"062000\"
            // }
            \"residentialAddress\": {
                \"addressLineOne\": \"123 Main St\",
                \"addressLineTwo\": \"Unit 4\",
                \"locality\": \"Sydney\",
                \"postcode\": \"2000\"
            }
        },
        \"medicalEvent\": [
            {
                \"id\": \"01\",
                \"medicalEventDate\": \"2026-04-01\",
                //\"medicalEventTime\": \"08:30:00+10:00\",
                \"service\": [
                    {
                        \"id\": \"1001\",
                        \"itemNumber\": \"104\",
                        \"chargeAmount\": \"25000\"
                        //,\"aftercareOverrideInd\": \"Y\"
                        //,\"duplicateServiceOverrideInd\": \"Y\"
                        //,\"multipleProcedureOverrideInd\": \"Y\"
                        //,\"numberOfPatientsSeen\": \"1\"
                        //,\"restrictiveOverrideCode\": \"NR\"
                        //,\"text\": \"Specialist Consultation\"
                        ,
                        \"facilityId\": \"9988770W\",
                        \"hospitalInd\": \"Y\"
                        ,\"patientContribAmount\": \"5000\"
                    }
                ]
            }
        ]
        // \"payeeProvider\": {
        //   \"providerNumber\": \"2447781L\"
        // },
    }
}"
headers = {
    "x-minor-id": "{{MinorId}}",
    "x-api-key": "<apiKey>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript Advanced_Claiming_Patient Claim Interactive_PatientClaimInteractive - Specialist_example
const url = 'https://https/Medicare/patientclaiminteractive/specialist/v1';
const options = {
  method: 'POST',
  headers: {
    'x-minor-id': '{{MinorId}}',
    'x-api-key': '<apiKey>',
    'Content-Type': 'application/json'
  },
  body: '"{\r\n    //\"correlationId\": \"urn:uuid:MDE00000e714ca2feb1742a2\",\r\n    \"patientClaimInteractive\": {\r\n        \"accountPaidInd\": \"N\",\r\n        //\"accountReferenceId\": \"ACC123\",\r\n        \"authorisationDate\": \"2026-04-01\",\r\n        \"submissionAuthorityInd\": \"Y\",\r\n        // \"referral\": {\r\n        //   \"provider\": {\r\n        //     \"providerNumber\": \"2447791K\"\r\n        //   },\r\n        //   \"issueDate\": \"2025-07-15\",\r\n        //   \"periodCode\": \"S\",\r\n        //   \"typeCode\": \"S\"\r\n        //   //\"period\": \"6\",\r\n        // },\r\n        \"referralOverrideCode\": \"H\",\r\n        \"serviceProvider\": {\r\n            \"providerNumber\": \"2447781L\"\r\n        },\r\n        \"patient\": {\r\n            \"identity\": {\r\n                \"dateOfBirth\": \"1986-12-18\",\r\n                \"familyName\": \"FLETCHER\",\r\n                \"givenName\": \"Edmond\"\r\n                //\"secondInitial\": \"\",\r\n                // \"sex\": \"1\"\r\n            },\r\n            \"medicare\": {\r\n                \"memberNumber\": \"4951525561\",\r\n                \"memberRefNumber\": \"2\"\r\n            }\r\n        },\r\n        \"claimant\": {\r\n           \"identity\": {\r\n                \"dateOfBirth\": \"2009-02-08\",\r\n                \"familyName\": \"FLETCHER\",\r\n                \"givenName\": \"Clint\"\r\n            },\r\n            \"medicare\": {\r\n                \"memberNumber\": \"4951525561\",\r\n                \"memberRefNumber\": \"3\"\r\n            }\r\n              ,\"contactDetails\": {\r\n                \"name\": \"Jane Doe\",\r\n                \"phoneNumber\": \"0412345678\",\r\n                \"emailAddress\": \"jane.doe@example.com\"\r\n              },\r\n            \r\n            // ,\"eftDetails\": {\r\n            //     \"accountName\": \"Jane Doe\",\r\n            //     \"accountNumber\": \"123456789\",\r\n            //     \"bsbCode\": \"062000\"\r\n            // }\r\n            \"residentialAddress\": {\r\n                \"addressLineOne\": \"123 Main St\",\r\n                \"addressLineTwo\": \"Unit 4\",\r\n                \"locality\": \"Sydney\",\r\n                \"postcode\": \"2000\"\r\n            }\r\n        },\r\n        \"medicalEvent\": [\r\n            {\r\n                \"id\": \"01\",\r\n                \"medicalEventDate\": \"2026-04-01\",\r\n                //\"medicalEventTime\": \"08:30:00+10:00\",\r\n                \"service\": [\r\n                    {\r\n                        \"id\": \"1001\",\r\n                        \"itemNumber\": \"104\",\r\n                        \"chargeAmount\": \"25000\"\r\n                        //,\"aftercareOverrideInd\": \"Y\"\r\n                        //,\"duplicateServiceOverrideInd\": \"Y\"\r\n                        //,\"multipleProcedureOverrideInd\": \"Y\"\r\n                        //,\"numberOfPatientsSeen\": \"1\"\r\n                        //,\"restrictiveOverrideCode\": \"NR\"\r\n                        //,\"text\": \"Specialist Consultation\"\r\n                        ,\r\n                        \"facilityId\": \"9988770W\",\r\n                        \"hospitalInd\": \"Y\"\r\n                        ,\"patientContribAmount\": \"5000\"\r\n                    }\r\n                ]\r\n            }\r\n        ]\r\n        // \"payeeProvider\": {\r\n        //   \"providerNumber\": \"2447781L\"\r\n        // },\r\n    }\r\n}"'
};

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

```go Advanced_Claiming_Patient Claim Interactive_PatientClaimInteractive - Specialist_example
package main

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

func main() {

	url := "https://https/Medicare/patientclaiminteractive/specialist/v1"

	payload := strings.NewReader("\"{\\r\\n    //\\\"correlationId\\\": \\\"urn:uuid:MDE00000e714ca2feb1742a2\\\",\\r\\n    \\\"patientClaimInteractive\\\": {\\r\\n        \\\"accountPaidInd\\\": \\\"N\\\",\\r\\n        //\\\"accountReferenceId\\\": \\\"ACC123\\\",\\r\\n        \\\"authorisationDate\\\": \\\"2026-04-01\\\",\\r\\n        \\\"submissionAuthorityInd\\\": \\\"Y\\\",\\r\\n        // \\\"referral\\\": {\\r\\n        //   \\\"provider\\\": {\\r\\n        //     \\\"providerNumber\\\": \\\"2447791K\\\"\\r\\n        //   },\\r\\n        //   \\\"issueDate\\\": \\\"2025-07-15\\\",\\r\\n        //   \\\"periodCode\\\": \\\"S\\\",\\r\\n        //   \\\"typeCode\\\": \\\"S\\\"\\r\\n        //   //\\\"period\\\": \\\"6\\\",\\r\\n        // },\\r\\n        \\\"referralOverrideCode\\\": \\\"H\\\",\\r\\n        \\\"serviceProvider\\\": {\\r\\n            \\\"providerNumber\\\": \\\"2447781L\\\"\\r\\n        },\\r\\n        \\\"patient\\\": {\\r\\n            \\\"identity\\\": {\\r\\n                \\\"dateOfBirth\\\": \\\"1986-12-18\\\",\\r\\n                \\\"familyName\\\": \\\"FLETCHER\\\",\\r\\n                \\\"givenName\\\": \\\"Edmond\\\"\\r\\n                //\\\"secondInitial\\\": \\\"\\\",\\r\\n                // \\\"sex\\\": \\\"1\\\"\\r\\n            },\\r\\n            \\\"medicare\\\": {\\r\\n                \\\"memberNumber\\\": \\\"4951525561\\\",\\r\\n                \\\"memberRefNumber\\\": \\\"2\\\"\\r\\n            }\\r\\n        },\\r\\n        \\\"claimant\\\": {\\r\\n           \\\"identity\\\": {\\r\\n                \\\"dateOfBirth\\\": \\\"2009-02-08\\\",\\r\\n                \\\"familyName\\\": \\\"FLETCHER\\\",\\r\\n                \\\"givenName\\\": \\\"Clint\\\"\\r\\n            },\\r\\n            \\\"medicare\\\": {\\r\\n                \\\"memberNumber\\\": \\\"4951525561\\\",\\r\\n                \\\"memberRefNumber\\\": \\\"3\\\"\\r\\n            }\\r\\n              ,\\\"contactDetails\\\": {\\r\\n                \\\"name\\\": \\\"Jane Doe\\\",\\r\\n                \\\"phoneNumber\\\": \\\"0412345678\\\",\\r\\n                \\\"emailAddress\\\": \\\"jane.doe@example.com\\\"\\r\\n              },\\r\\n            \\r\\n            // ,\\\"eftDetails\\\": {\\r\\n            //     \\\"accountName\\\": \\\"Jane Doe\\\",\\r\\n            //     \\\"accountNumber\\\": \\\"123456789\\\",\\r\\n            //     \\\"bsbCode\\\": \\\"062000\\\"\\r\\n            // }\\r\\n            \\\"residentialAddress\\\": {\\r\\n                \\\"addressLineOne\\\": \\\"123 Main St\\\",\\r\\n                \\\"addressLineTwo\\\": \\\"Unit 4\\\",\\r\\n                \\\"locality\\\": \\\"Sydney\\\",\\r\\n                \\\"postcode\\\": \\\"2000\\\"\\r\\n            }\\r\\n        },\\r\\n        \\\"medicalEvent\\\": [\\r\\n            {\\r\\n                \\\"id\\\": \\\"01\\\",\\r\\n                \\\"medicalEventDate\\\": \\\"2026-04-01\\\",\\r\\n                //\\\"medicalEventTime\\\": \\\"08:30:00+10:00\\\",\\r\\n                \\\"service\\\": [\\r\\n                    {\\r\\n                        \\\"id\\\": \\\"1001\\\",\\r\\n                        \\\"itemNumber\\\": \\\"104\\\",\\r\\n                        \\\"chargeAmount\\\": \\\"25000\\\"\\r\\n                        //,\\\"aftercareOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"duplicateServiceOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"multipleProcedureOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"numberOfPatientsSeen\\\": \\\"1\\\"\\r\\n                        //,\\\"restrictiveOverrideCode\\\": \\\"NR\\\"\\r\\n                        //,\\\"text\\\": \\\"Specialist Consultation\\\"\\r\\n                        ,\\r\\n                        \\\"facilityId\\\": \\\"9988770W\\\",\\r\\n                        \\\"hospitalInd\\\": \\\"Y\\\"\\r\\n                        ,\\\"patientContribAmount\\\": \\\"5000\\\"\\r\\n                    }\\r\\n                ]\\r\\n            }\\r\\n        ]\\r\\n        // \\\"payeeProvider\\\": {\\r\\n        //   \\\"providerNumber\\\": \\\"2447781L\\\"\\r\\n        // },\\r\\n    }\\r\\n}\"")

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

	req.Header.Add("x-minor-id", "{{MinorId}}")
	req.Header.Add("x-api-key", "<apiKey>")
	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 Advanced_Claiming_Patient Claim Interactive_PatientClaimInteractive - Specialist_example
require 'uri'
require 'net/http'

url = URI("https://https/Medicare/patientclaiminteractive/specialist/v1")

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

request = Net::HTTP::Post.new(url)
request["x-minor-id"] = '{{MinorId}}'
request["x-api-key"] = '<apiKey>'
request["Content-Type"] = 'application/json'
request.body = "\"{\\r\\n    //\\\"correlationId\\\": \\\"urn:uuid:MDE00000e714ca2feb1742a2\\\",\\r\\n    \\\"patientClaimInteractive\\\": {\\r\\n        \\\"accountPaidInd\\\": \\\"N\\\",\\r\\n        //\\\"accountReferenceId\\\": \\\"ACC123\\\",\\r\\n        \\\"authorisationDate\\\": \\\"2026-04-01\\\",\\r\\n        \\\"submissionAuthorityInd\\\": \\\"Y\\\",\\r\\n        // \\\"referral\\\": {\\r\\n        //   \\\"provider\\\": {\\r\\n        //     \\\"providerNumber\\\": \\\"2447791K\\\"\\r\\n        //   },\\r\\n        //   \\\"issueDate\\\": \\\"2025-07-15\\\",\\r\\n        //   \\\"periodCode\\\": \\\"S\\\",\\r\\n        //   \\\"typeCode\\\": \\\"S\\\"\\r\\n        //   //\\\"period\\\": \\\"6\\\",\\r\\n        // },\\r\\n        \\\"referralOverrideCode\\\": \\\"H\\\",\\r\\n        \\\"serviceProvider\\\": {\\r\\n            \\\"providerNumber\\\": \\\"2447781L\\\"\\r\\n        },\\r\\n        \\\"patient\\\": {\\r\\n            \\\"identity\\\": {\\r\\n                \\\"dateOfBirth\\\": \\\"1986-12-18\\\",\\r\\n                \\\"familyName\\\": \\\"FLETCHER\\\",\\r\\n                \\\"givenName\\\": \\\"Edmond\\\"\\r\\n                //\\\"secondInitial\\\": \\\"\\\",\\r\\n                // \\\"sex\\\": \\\"1\\\"\\r\\n            },\\r\\n            \\\"medicare\\\": {\\r\\n                \\\"memberNumber\\\": \\\"4951525561\\\",\\r\\n                \\\"memberRefNumber\\\": \\\"2\\\"\\r\\n            }\\r\\n        },\\r\\n        \\\"claimant\\\": {\\r\\n           \\\"identity\\\": {\\r\\n                \\\"dateOfBirth\\\": \\\"2009-02-08\\\",\\r\\n                \\\"familyName\\\": \\\"FLETCHER\\\",\\r\\n                \\\"givenName\\\": \\\"Clint\\\"\\r\\n            },\\r\\n            \\\"medicare\\\": {\\r\\n                \\\"memberNumber\\\": \\\"4951525561\\\",\\r\\n                \\\"memberRefNumber\\\": \\\"3\\\"\\r\\n            }\\r\\n              ,\\\"contactDetails\\\": {\\r\\n                \\\"name\\\": \\\"Jane Doe\\\",\\r\\n                \\\"phoneNumber\\\": \\\"0412345678\\\",\\r\\n                \\\"emailAddress\\\": \\\"jane.doe@example.com\\\"\\r\\n              },\\r\\n            \\r\\n            // ,\\\"eftDetails\\\": {\\r\\n            //     \\\"accountName\\\": \\\"Jane Doe\\\",\\r\\n            //     \\\"accountNumber\\\": \\\"123456789\\\",\\r\\n            //     \\\"bsbCode\\\": \\\"062000\\\"\\r\\n            // }\\r\\n            \\\"residentialAddress\\\": {\\r\\n                \\\"addressLineOne\\\": \\\"123 Main St\\\",\\r\\n                \\\"addressLineTwo\\\": \\\"Unit 4\\\",\\r\\n                \\\"locality\\\": \\\"Sydney\\\",\\r\\n                \\\"postcode\\\": \\\"2000\\\"\\r\\n            }\\r\\n        },\\r\\n        \\\"medicalEvent\\\": [\\r\\n            {\\r\\n                \\\"id\\\": \\\"01\\\",\\r\\n                \\\"medicalEventDate\\\": \\\"2026-04-01\\\",\\r\\n                //\\\"medicalEventTime\\\": \\\"08:30:00+10:00\\\",\\r\\n                \\\"service\\\": [\\r\\n                    {\\r\\n                        \\\"id\\\": \\\"1001\\\",\\r\\n                        \\\"itemNumber\\\": \\\"104\\\",\\r\\n                        \\\"chargeAmount\\\": \\\"25000\\\"\\r\\n                        //,\\\"aftercareOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"duplicateServiceOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"multipleProcedureOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"numberOfPatientsSeen\\\": \\\"1\\\"\\r\\n                        //,\\\"restrictiveOverrideCode\\\": \\\"NR\\\"\\r\\n                        //,\\\"text\\\": \\\"Specialist Consultation\\\"\\r\\n                        ,\\r\\n                        \\\"facilityId\\\": \\\"9988770W\\\",\\r\\n                        \\\"hospitalInd\\\": \\\"Y\\\"\\r\\n                        ,\\\"patientContribAmount\\\": \\\"5000\\\"\\r\\n                    }\\r\\n                ]\\r\\n            }\\r\\n        ]\\r\\n        // \\\"payeeProvider\\\": {\\r\\n        //   \\\"providerNumber\\\": \\\"2447781L\\\"\\r\\n        // },\\r\\n    }\\r\\n}\""

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

```java Advanced_Claiming_Patient Claim Interactive_PatientClaimInteractive - Specialist_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://https/Medicare/patientclaiminteractive/specialist/v1")
  .header("x-minor-id", "{{MinorId}}")
  .header("x-api-key", "<apiKey>")
  .header("Content-Type", "application/json")
  .body("\"{\\r\\n    //\\\"correlationId\\\": \\\"urn:uuid:MDE00000e714ca2feb1742a2\\\",\\r\\n    \\\"patientClaimInteractive\\\": {\\r\\n        \\\"accountPaidInd\\\": \\\"N\\\",\\r\\n        //\\\"accountReferenceId\\\": \\\"ACC123\\\",\\r\\n        \\\"authorisationDate\\\": \\\"2026-04-01\\\",\\r\\n        \\\"submissionAuthorityInd\\\": \\\"Y\\\",\\r\\n        // \\\"referral\\\": {\\r\\n        //   \\\"provider\\\": {\\r\\n        //     \\\"providerNumber\\\": \\\"2447791K\\\"\\r\\n        //   },\\r\\n        //   \\\"issueDate\\\": \\\"2025-07-15\\\",\\r\\n        //   \\\"periodCode\\\": \\\"S\\\",\\r\\n        //   \\\"typeCode\\\": \\\"S\\\"\\r\\n        //   //\\\"period\\\": \\\"6\\\",\\r\\n        // },\\r\\n        \\\"referralOverrideCode\\\": \\\"H\\\",\\r\\n        \\\"serviceProvider\\\": {\\r\\n            \\\"providerNumber\\\": \\\"2447781L\\\"\\r\\n        },\\r\\n        \\\"patient\\\": {\\r\\n            \\\"identity\\\": {\\r\\n                \\\"dateOfBirth\\\": \\\"1986-12-18\\\",\\r\\n                \\\"familyName\\\": \\\"FLETCHER\\\",\\r\\n                \\\"givenName\\\": \\\"Edmond\\\"\\r\\n                //\\\"secondInitial\\\": \\\"\\\",\\r\\n                // \\\"sex\\\": \\\"1\\\"\\r\\n            },\\r\\n            \\\"medicare\\\": {\\r\\n                \\\"memberNumber\\\": \\\"4951525561\\\",\\r\\n                \\\"memberRefNumber\\\": \\\"2\\\"\\r\\n            }\\r\\n        },\\r\\n        \\\"claimant\\\": {\\r\\n           \\\"identity\\\": {\\r\\n                \\\"dateOfBirth\\\": \\\"2009-02-08\\\",\\r\\n                \\\"familyName\\\": \\\"FLETCHER\\\",\\r\\n                \\\"givenName\\\": \\\"Clint\\\"\\r\\n            },\\r\\n            \\\"medicare\\\": {\\r\\n                \\\"memberNumber\\\": \\\"4951525561\\\",\\r\\n                \\\"memberRefNumber\\\": \\\"3\\\"\\r\\n            }\\r\\n              ,\\\"contactDetails\\\": {\\r\\n                \\\"name\\\": \\\"Jane Doe\\\",\\r\\n                \\\"phoneNumber\\\": \\\"0412345678\\\",\\r\\n                \\\"emailAddress\\\": \\\"jane.doe@example.com\\\"\\r\\n              },\\r\\n            \\r\\n            // ,\\\"eftDetails\\\": {\\r\\n            //     \\\"accountName\\\": \\\"Jane Doe\\\",\\r\\n            //     \\\"accountNumber\\\": \\\"123456789\\\",\\r\\n            //     \\\"bsbCode\\\": \\\"062000\\\"\\r\\n            // }\\r\\n            \\\"residentialAddress\\\": {\\r\\n                \\\"addressLineOne\\\": \\\"123 Main St\\\",\\r\\n                \\\"addressLineTwo\\\": \\\"Unit 4\\\",\\r\\n                \\\"locality\\\": \\\"Sydney\\\",\\r\\n                \\\"postcode\\\": \\\"2000\\\"\\r\\n            }\\r\\n        },\\r\\n        \\\"medicalEvent\\\": [\\r\\n            {\\r\\n                \\\"id\\\": \\\"01\\\",\\r\\n                \\\"medicalEventDate\\\": \\\"2026-04-01\\\",\\r\\n                //\\\"medicalEventTime\\\": \\\"08:30:00+10:00\\\",\\r\\n                \\\"service\\\": [\\r\\n                    {\\r\\n                        \\\"id\\\": \\\"1001\\\",\\r\\n                        \\\"itemNumber\\\": \\\"104\\\",\\r\\n                        \\\"chargeAmount\\\": \\\"25000\\\"\\r\\n                        //,\\\"aftercareOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"duplicateServiceOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"multipleProcedureOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"numberOfPatientsSeen\\\": \\\"1\\\"\\r\\n                        //,\\\"restrictiveOverrideCode\\\": \\\"NR\\\"\\r\\n                        //,\\\"text\\\": \\\"Specialist Consultation\\\"\\r\\n                        ,\\r\\n                        \\\"facilityId\\\": \\\"9988770W\\\",\\r\\n                        \\\"hospitalInd\\\": \\\"Y\\\"\\r\\n                        ,\\\"patientContribAmount\\\": \\\"5000\\\"\\r\\n                    }\\r\\n                ]\\r\\n            }\\r\\n        ]\\r\\n        // \\\"payeeProvider\\\": {\\r\\n        //   \\\"providerNumber\\\": \\\"2447781L\\\"\\r\\n        // },\\r\\n    }\\r\\n}\"")
  .asString();
```

```php Advanced_Claiming_Patient Claim Interactive_PatientClaimInteractive - Specialist_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://https/Medicare/patientclaiminteractive/specialist/v1', [
  'body' => '"{\\r\\n    //\\"correlationId\\": \\"urn:uuid:MDE00000e714ca2feb1742a2\\",\\r\\n    \\"patientClaimInteractive\\": {\\r\\n        \\"accountPaidInd\\": \\"N\\",\\r\\n        //\\"accountReferenceId\\": \\"ACC123\\",\\r\\n        \\"authorisationDate\\": \\"2026-04-01\\",\\r\\n        \\"submissionAuthorityInd\\": \\"Y\\",\\r\\n        // \\"referral\\": {\\r\\n        //   \\"provider\\": {\\r\\n        //     \\"providerNumber\\": \\"2447791K\\"\\r\\n        //   },\\r\\n        //   \\"issueDate\\": \\"2025-07-15\\",\\r\\n        //   \\"periodCode\\": \\"S\\",\\r\\n        //   \\"typeCode\\": \\"S\\"\\r\\n        //   //\\"period\\": \\"6\\",\\r\\n        // },\\r\\n        \\"referralOverrideCode\\": \\"H\\",\\r\\n        \\"serviceProvider\\": {\\r\\n            \\"providerNumber\\": \\"2447781L\\"\\r\\n        },\\r\\n        \\"patient\\": {\\r\\n            \\"identity\\": {\\r\\n                \\"dateOfBirth\\": \\"1986-12-18\\",\\r\\n                \\"familyName\\": \\"FLETCHER\\",\\r\\n                \\"givenName\\": \\"Edmond\\"\\r\\n                //\\"secondInitial\\": \\"\\",\\r\\n                // \\"sex\\": \\"1\\"\\r\\n            },\\r\\n            \\"medicare\\": {\\r\\n                \\"memberNumber\\": \\"4951525561\\",\\r\\n                \\"memberRefNumber\\": \\"2\\"\\r\\n            }\\r\\n        },\\r\\n        \\"claimant\\": {\\r\\n           \\"identity\\": {\\r\\n                \\"dateOfBirth\\": \\"2009-02-08\\",\\r\\n                \\"familyName\\": \\"FLETCHER\\",\\r\\n                \\"givenName\\": \\"Clint\\"\\r\\n            },\\r\\n            \\"medicare\\": {\\r\\n                \\"memberNumber\\": \\"4951525561\\",\\r\\n                \\"memberRefNumber\\": \\"3\\"\\r\\n            }\\r\\n              ,\\"contactDetails\\": {\\r\\n                \\"name\\": \\"Jane Doe\\",\\r\\n                \\"phoneNumber\\": \\"0412345678\\",\\r\\n                \\"emailAddress\\": \\"jane.doe@example.com\\"\\r\\n              },\\r\\n            \\r\\n            // ,\\"eftDetails\\": {\\r\\n            //     \\"accountName\\": \\"Jane Doe\\",\\r\\n            //     \\"accountNumber\\": \\"123456789\\",\\r\\n            //     \\"bsbCode\\": \\"062000\\"\\r\\n            // }\\r\\n            \\"residentialAddress\\": {\\r\\n                \\"addressLineOne\\": \\"123 Main St\\",\\r\\n                \\"addressLineTwo\\": \\"Unit 4\\",\\r\\n                \\"locality\\": \\"Sydney\\",\\r\\n                \\"postcode\\": \\"2000\\"\\r\\n            }\\r\\n        },\\r\\n        \\"medicalEvent\\": [\\r\\n            {\\r\\n                \\"id\\": \\"01\\",\\r\\n                \\"medicalEventDate\\": \\"2026-04-01\\",\\r\\n                //\\"medicalEventTime\\": \\"08:30:00+10:00\\",\\r\\n                \\"service\\": [\\r\\n                    {\\r\\n                        \\"id\\": \\"1001\\",\\r\\n                        \\"itemNumber\\": \\"104\\",\\r\\n                        \\"chargeAmount\\": \\"25000\\"\\r\\n                        //,\\"aftercareOverrideInd\\": \\"Y\\"\\r\\n                        //,\\"duplicateServiceOverrideInd\\": \\"Y\\"\\r\\n                        //,\\"multipleProcedureOverrideInd\\": \\"Y\\"\\r\\n                        //,\\"numberOfPatientsSeen\\": \\"1\\"\\r\\n                        //,\\"restrictiveOverrideCode\\": \\"NR\\"\\r\\n                        //,\\"text\\": \\"Specialist Consultation\\"\\r\\n                        ,\\r\\n                        \\"facilityId\\": \\"9988770W\\",\\r\\n                        \\"hospitalInd\\": \\"Y\\"\\r\\n                        ,\\"patientContribAmount\\": \\"5000\\"\\r\\n                    }\\r\\n                ]\\r\\n            }\\r\\n        ]\\r\\n        // \\"payeeProvider\\": {\\r\\n        //   \\"providerNumber\\": \\"2447781L\\"\\r\\n        // },\\r\\n    }\\r\\n}"',
  'headers' => [
    'Content-Type' => 'application/json',
    'x-api-key' => '<apiKey>',
    'x-minor-id' => '{{MinorId}}',
  ],
]);

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

```csharp Advanced_Claiming_Patient Claim Interactive_PatientClaimInteractive - Specialist_example
using RestSharp;

var client = new RestClient("https://https/Medicare/patientclaiminteractive/specialist/v1");
var request = new RestRequest(Method.POST);
request.AddHeader("x-minor-id", "{{MinorId}}");
request.AddHeader("x-api-key", "<apiKey>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "\"{\\r\\n    //\\\"correlationId\\\": \\\"urn:uuid:MDE00000e714ca2feb1742a2\\\",\\r\\n    \\\"patientClaimInteractive\\\": {\\r\\n        \\\"accountPaidInd\\\": \\\"N\\\",\\r\\n        //\\\"accountReferenceId\\\": \\\"ACC123\\\",\\r\\n        \\\"authorisationDate\\\": \\\"2026-04-01\\\",\\r\\n        \\\"submissionAuthorityInd\\\": \\\"Y\\\",\\r\\n        // \\\"referral\\\": {\\r\\n        //   \\\"provider\\\": {\\r\\n        //     \\\"providerNumber\\\": \\\"2447791K\\\"\\r\\n        //   },\\r\\n        //   \\\"issueDate\\\": \\\"2025-07-15\\\",\\r\\n        //   \\\"periodCode\\\": \\\"S\\\",\\r\\n        //   \\\"typeCode\\\": \\\"S\\\"\\r\\n        //   //\\\"period\\\": \\\"6\\\",\\r\\n        // },\\r\\n        \\\"referralOverrideCode\\\": \\\"H\\\",\\r\\n        \\\"serviceProvider\\\": {\\r\\n            \\\"providerNumber\\\": \\\"2447781L\\\"\\r\\n        },\\r\\n        \\\"patient\\\": {\\r\\n            \\\"identity\\\": {\\r\\n                \\\"dateOfBirth\\\": \\\"1986-12-18\\\",\\r\\n                \\\"familyName\\\": \\\"FLETCHER\\\",\\r\\n                \\\"givenName\\\": \\\"Edmond\\\"\\r\\n                //\\\"secondInitial\\\": \\\"\\\",\\r\\n                // \\\"sex\\\": \\\"1\\\"\\r\\n            },\\r\\n            \\\"medicare\\\": {\\r\\n                \\\"memberNumber\\\": \\\"4951525561\\\",\\r\\n                \\\"memberRefNumber\\\": \\\"2\\\"\\r\\n            }\\r\\n        },\\r\\n        \\\"claimant\\\": {\\r\\n           \\\"identity\\\": {\\r\\n                \\\"dateOfBirth\\\": \\\"2009-02-08\\\",\\r\\n                \\\"familyName\\\": \\\"FLETCHER\\\",\\r\\n                \\\"givenName\\\": \\\"Clint\\\"\\r\\n            },\\r\\n            \\\"medicare\\\": {\\r\\n                \\\"memberNumber\\\": \\\"4951525561\\\",\\r\\n                \\\"memberRefNumber\\\": \\\"3\\\"\\r\\n            }\\r\\n              ,\\\"contactDetails\\\": {\\r\\n                \\\"name\\\": \\\"Jane Doe\\\",\\r\\n                \\\"phoneNumber\\\": \\\"0412345678\\\",\\r\\n                \\\"emailAddress\\\": \\\"jane.doe@example.com\\\"\\r\\n              },\\r\\n            \\r\\n            // ,\\\"eftDetails\\\": {\\r\\n            //     \\\"accountName\\\": \\\"Jane Doe\\\",\\r\\n            //     \\\"accountNumber\\\": \\\"123456789\\\",\\r\\n            //     \\\"bsbCode\\\": \\\"062000\\\"\\r\\n            // }\\r\\n            \\\"residentialAddress\\\": {\\r\\n                \\\"addressLineOne\\\": \\\"123 Main St\\\",\\r\\n                \\\"addressLineTwo\\\": \\\"Unit 4\\\",\\r\\n                \\\"locality\\\": \\\"Sydney\\\",\\r\\n                \\\"postcode\\\": \\\"2000\\\"\\r\\n            }\\r\\n        },\\r\\n        \\\"medicalEvent\\\": [\\r\\n            {\\r\\n                \\\"id\\\": \\\"01\\\",\\r\\n                \\\"medicalEventDate\\\": \\\"2026-04-01\\\",\\r\\n                //\\\"medicalEventTime\\\": \\\"08:30:00+10:00\\\",\\r\\n                \\\"service\\\": [\\r\\n                    {\\r\\n                        \\\"id\\\": \\\"1001\\\",\\r\\n                        \\\"itemNumber\\\": \\\"104\\\",\\r\\n                        \\\"chargeAmount\\\": \\\"25000\\\"\\r\\n                        //,\\\"aftercareOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"duplicateServiceOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"multipleProcedureOverrideInd\\\": \\\"Y\\\"\\r\\n                        //,\\\"numberOfPatientsSeen\\\": \\\"1\\\"\\r\\n                        //,\\\"restrictiveOverrideCode\\\": \\\"NR\\\"\\r\\n                        //,\\\"text\\\": \\\"Specialist Consultation\\\"\\r\\n                        ,\\r\\n                        \\\"facilityId\\\": \\\"9988770W\\\",\\r\\n                        \\\"hospitalInd\\\": \\\"Y\\\"\\r\\n                        ,\\\"patientContribAmount\\\": \\\"5000\\\"\\r\\n                    }\\r\\n                ]\\r\\n            }\\r\\n        ]\\r\\n        // \\\"payeeProvider\\\": {\\r\\n        //   \\\"providerNumber\\\": \\\"2447781L\\\"\\r\\n        // },\\r\\n    }\\r\\n}\"", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Advanced_Claiming_Patient Claim Interactive_PatientClaimInteractive - Specialist_example
import Foundation

let headers = [
  "x-minor-id": "{{MinorId}}",
  "x-api-key": "<apiKey>",
  "Content-Type": "application/json"
]
let parameters = "{
    //\"correlationId\": \"urn:uuid:MDE00000e714ca2feb1742a2\",
    \"patientClaimInteractive\": {
        \"accountPaidInd\": \"N\",
        //\"accountReferenceId\": \"ACC123\",
        \"authorisationDate\": \"2026-04-01\",
        \"submissionAuthorityInd\": \"Y\",
        // \"referral\": {
        //   \"provider\": {
        //     \"providerNumber\": \"2447791K\"
        //   },
        //   \"issueDate\": \"2025-07-15\",
        //   \"periodCode\": \"S\",
        //   \"typeCode\": \"S\"
        //   //\"period\": \"6\",
        // },
        \"referralOverrideCode\": \"H\",
        \"serviceProvider\": {
            \"providerNumber\": \"2447781L\"
        },
        \"patient\": {
            \"identity\": {
                \"dateOfBirth\": \"1986-12-18\",
                \"familyName\": \"FLETCHER\",
                \"givenName\": \"Edmond\"
                //\"secondInitial\": \"\",
                // \"sex\": \"1\"
            },
            \"medicare\": {
                \"memberNumber\": \"4951525561\",
                \"memberRefNumber\": \"2\"
            }
        },
        \"claimant\": {
           \"identity\": {
                \"dateOfBirth\": \"2009-02-08\",
                \"familyName\": \"FLETCHER\",
                \"givenName\": \"Clint\"
            },
            \"medicare\": {
                \"memberNumber\": \"4951525561\",
                \"memberRefNumber\": \"3\"
            }
              ,\"contactDetails\": {
                \"name\": \"Jane Doe\",
                \"phoneNumber\": \"0412345678\",
                \"emailAddress\": \"jane.doe@example.com\"
              },
            
            // ,\"eftDetails\": {
            //     \"accountName\": \"Jane Doe\",
            //     \"accountNumber\": \"123456789\",
            //     \"bsbCode\": \"062000\"
            // }
            \"residentialAddress\": {
                \"addressLineOne\": \"123 Main St\",
                \"addressLineTwo\": \"Unit 4\",
                \"locality\": \"Sydney\",
                \"postcode\": \"2000\"
            }
        },
        \"medicalEvent\": [
            {
                \"id\": \"01\",
                \"medicalEventDate\": \"2026-04-01\",
                //\"medicalEventTime\": \"08:30:00+10:00\",
                \"service\": [
                    {
                        \"id\": \"1001\",
                        \"itemNumber\": \"104\",
                        \"chargeAmount\": \"25000\"
                        //,\"aftercareOverrideInd\": \"Y\"
                        //,\"duplicateServiceOverrideInd\": \"Y\"
                        //,\"multipleProcedureOverrideInd\": \"Y\"
                        //,\"numberOfPatientsSeen\": \"1\"
                        //,\"restrictiveOverrideCode\": \"NR\"
                        //,\"text\": \"Specialist Consultation\"
                        ,
                        \"facilityId\": \"9988770W\",
                        \"hospitalInd\": \"Y\"
                        ,\"patientContribAmount\": \"5000\"
                    }
                ]
            }
        ]
        // \"payeeProvider\": {
        //   \"providerNumber\": \"2447781L\"
        // },
    }
}" as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://https/Medicare/patientclaiminteractive/specialist/v1")! 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()
```