Sample Request

curl --request POST \
  --url http://localhost:4000/faro/financial/v1/graphql \
  --header 'Content-Type: application/json' \
  --data '{
	"query": "mutation submitBillPay($input: BillPayInput!) { submitBillPay(input: $input) { id   status  claimNumber claimType client description syntheticId amount availableBalance totalClaimAmount patientRespAmount dateOfServiceFrom dateOfServiceTo transactionDate timestamp version segmentroutingID subscriberID subscriberFirstName subscriberLastName patientFirstName patientLastName patientAccountNumber patientDOB patientID payeeName payeeAddress1 payeeAddress2 payeeCity payeeState payeeZip payeeCountry payeePatientAccountNumber  payer835Id payeeTIN rendProviderFirstName rendProviderLastName rendProviderId rendProviderIdQualifier errorCode errorMessage } }",
	"variables": {
		"input": {
			      "id": "df42f60c-645-45a8-853d-f70",
						"amount": 29,
            "availableBalance": 100,
			}
	}
}'