- Process Claim
- Reports
- Converse
- Policy Management
- Insights
- Tariff Management
- Provider Management
- Neural Center
- IndexGET
Add Providers
POST
/providers/add_providers
Provider Management
Request
Body Params application/json
array of:
provider_id
string
Provider Id
ahfoz_number
string
Ahfoz Number
name
string
Name
units
array[object (AhfozGradesSchema) {2}]
Units
unit
string
Unit
grade
enum<string>
Grade
Allowed values:
ABCDEF
dispenser_license
boolean
Dispenser License
email
string
Email
phone
string
Phone
address
string
Address
country
string
Country
Example
[
{
"provider_id": "string",
"ahfoz_number": "string",
"name": "string",
"units": [
{
"unit": "string",
"grade": "A"
}
],
"dispenser_license": true,
"email": "string",
"phone": "string",
"address": "string",
"country": "string"
}
]
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/providers/add_providers' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"provider_id": "string",
"ahfoz_number": "string",
"name": "string",
"units": [
{
"unit": "string",
"grade": "A"
}
],
"dispenser_license": true,
"email": "string",
"phone": "string",
"address": "string",
"country": "string"
}
]'
Responses
🟢200OK
application/json
Body
No schema defined
Example
null
🟠422Parameter Error
Modified at 2024-12-07 17:10:47