Skip to main content
POST
/
public
/
v1
/
payor-contracts
/
Create Payor Contract
curl --request POST \
  --url https://app.silnahealth.com/api/public/v1/payor-contracts/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "payor_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "service_locations": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "provider_id": null,
  "mso_id": null,
  "clinician_id": null,
  "provider_group_id": null,
  "insurance_types": [],
  "plans": [],
  "excluded_plans": [],
  "medicaid_id": null,
  "ipa_required": null
}
'
import requests

url = "https://app.silnahealth.com/api/public/v1/payor-contracts/"

payload = {
    "payor_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "service_locations": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
    "provider_id": None,
    "mso_id": None,
    "clinician_id": None,
    "provider_group_id": None,
    "insurance_types": [],
    "plans": [],
    "excluded_plans": [],
    "medicaid_id": None,
    "ipa_required": None
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.text)
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: JSON.stringify({
    payor_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
    service_locations: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
    provider_id: null,
    mso_id: null,
    clinician_id: null,
    provider_group_id: null,
    insurance_types: [],
    plans: [],
    excluded_plans: [],
    medicaid_id: null,
    ipa_required: null
  })
};

fetch('https://app.silnahealth.com/api/public/v1/payor-contracts/', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://app.silnahealth.com/api/public/v1/payor-contracts/",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => json_encode([
    'payor_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
    'service_locations' => [
        '3c90c3cc-0d44-4b50-8888-8dd25736052a'
    ],
    'provider_id' => null,
    'mso_id' => null,
    'clinician_id' => null,
    'provider_group_id' => null,
    'insurance_types' => [
        
    ],
    'plans' => [
        
    ],
    'excluded_plans' => [
        
    ],
    'medicaid_id' => null,
    'ipa_required' => null
  ]),
  CURLOPT_HTTPHEADER => [
    "Authorization: Bearer <token>",
    "Content-Type: application/json"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

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

func main() {

	url := "https://app.silnahealth.com/api/public/v1/payor-contracts/"

	payload := strings.NewReader("{\n  \"payor_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n  \"service_locations\": [\n    \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n  ],\n  \"provider_id\": null,\n  \"mso_id\": null,\n  \"clinician_id\": null,\n  \"provider_group_id\": null,\n  \"insurance_types\": [],\n  \"plans\": [],\n  \"excluded_plans\": [],\n  \"medicaid_id\": null,\n  \"ipa_required\": null\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(string(body))

}
HttpResponse<String> response = Unirest.post("https://app.silnahealth.com/api/public/v1/payor-contracts/")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"payor_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n  \"service_locations\": [\n    \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n  ],\n  \"provider_id\": null,\n  \"mso_id\": null,\n  \"clinician_id\": null,\n  \"provider_group_id\": null,\n  \"insurance_types\": [],\n  \"plans\": [],\n  \"excluded_plans\": [],\n  \"medicaid_id\": null,\n  \"ipa_required\": null\n}")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://app.silnahealth.com/api/public/v1/payor-contracts/")

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  \"payor_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n  \"service_locations\": [\n    \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n  ],\n  \"provider_id\": null,\n  \"mso_id\": null,\n  \"clinician_id\": null,\n  \"provider_group_id\": null,\n  \"insurance_types\": [],\n  \"plans\": [],\n  \"excluded_plans\": [],\n  \"medicaid_id\": null,\n  \"ipa_required\": null\n}"

response = http.request(request)
puts response.read_body
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
{
  "message": "<string>"
}
{
  "message": "<string>"
}
{
  "message": "<string>"
}
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
payor_id
string<uuid>
required

The payor's Silna identifier

service_locations
string<uuid>[]
required

At least one service location is required.

Minimum array length: 1
provider_id
string<uuid> | null

The provider's Silna identifier

mso_id
string<uuid> | null

The MSO's Silna identifier

clinician_id
string<uuid> | null

The clinician's Silna identifier. Specify either clinician_id or provider_group_id.

provider_group_id
string<uuid> | null

The provider group's Silna identifier. Specify either clinician_id or provider_group_id.

insurance_types
enum<string>[]

Specifies which insurance types this contract covers. When no types are selected, the contract applies to all insurance types.

Available options:
COMMERCIAL,
MEDICARE,
MEDICAID,
REGIONAL_CENTER,
WORKERS_COMPENSATION,
AUTO_INSURANCE
plans
string<uuid>[]

Select specific plans to include. When no plans are selected, the contract applies to all plans. Cannot be combined with excluded_plans.

excluded_plans
string<uuid>[]

Select specific plans to exclude. The contract will apply to all plans except those selected. Cannot be combined with plans.

medicaid_id
string | null

Medicaid ID

ipa_required
boolean | null

When enabled, this contract only applies when the patient is associated with one of the contract's IPAs.

Response

id
string<uuid>
required

The newly created contract's Silna identifier