get providers information
GET
/v1/providersRequest
Query Params
user_id
object
optional
Uniqe identifier of any users
Example:
15525588
Request samples
Responses
Normal response to fetch a provider(200)
Normal response to fetch a provider
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
providers
array[object (provider) {10}]
optional
user_id
integer
optional
id
integer
provider id
Example:
1234
biography
string | null
provider biography
Example:
This is a example test biography
employee_id
string
optional
uniqe identifer of any provider related to his/her job (ex: for doctors is medical code)
Example:
1234567890
prefix
string
optional
prefix of provider according to his/her job (ex: for doctors is دکتر)
Example:
دکتر
slug
string
optional
Provider slug profile (ex: دکتر-محمدی is accessible from this url https://paziresh24.com/dr/دکتر-محمدی)
Example:
دکتر
page_view
integer
page view
Example:
15
created_at
string <date-time>
provider registeration date and time
Example:
2016-03-08T09:04:22+00:00
field_start_date
string <date> | null
provider field start date ,for example: for a doctor it can be graduation date
Example:
2016-03-08
job_title
enum<string>
optional
job title of provider
Allowed value:
doctor
Example:
doctor
Example
{
"providers": [
{
"user_id": 0,
"id": 1234,
"biography": "This is a example test biography",
"employee_id": 1234567890,
"prefix": "دکتر",
"slug": "دکتر",
"page_view": 15,
"created_at": "2016-03-08T09:04:22+00:00",
"field_start_date": "2016-03-08",
"job_title": "doctor"
}
]
}
Last modified: 7 months ago