Accounts: Qualifications
The Qualifications sub-service accesses profile data detailing the various achievements and areas of expertise.
- Supported Roles
- Available Services
- All Qualifications
- All Items for a Qualification Type
- An Individual Qualification Item
- Response Description
- Expansions
- API Explorer
Supported Roles
| Role |
Reads? |
Writes? |
| IDX |
Yes |
No |
| VOW |
Yes |
No |
| Private |
Yes |
No |
More information about roles
may be found here.
Available Services
All Qualifications
URI: /<API Version>/accounts/<Account.Id>/qualifications
| HTTP Method |
Description |
Notes |
| GET |
Returns qualification info |
|
| POST,PUT,DELETE |
Returns HTTP 405 (Method Not Allowed) |
Not implemented |
GET Request
Parameters:
GET Response
{
"D": {
"Success": true,
"Results": [
{
"Qualifications": {
"Designations": [
{
"Id": "201011120813598729000000",
"ResourceUri": "/v1/accounts/20080624194124915376000000/qualifications/designations/201011120813598729000000",
"Code": "ABR",
"Name": "Accredited Buyer Rep",
"Dates": "2005-"
}
],
"Expertise": [
{
"Id": "200911120813598729000000",
"ResourceUri": "/v1/account/20080624194124915376000000/qualifications/expertise/200911120813598729000000",
"Name": "Condo specialist",
"Dates": "2005-"
}
]
}
}
]
}
}
All Items for a Qualification Type
URI: /<API Version>/accounts/<Account.Id>/qualifications/<Qualification>
| HTTP Method |
Description |
Notes |
| GET |
Returns qualification info for the specific qualification type for the matching user |
|
| POST,PUT,DELETE |
Returns HTTP 405 (Method Not Allowed) |
Not implemented |
GET Request
Parameters:
GET Response
{
"D": {
"Success": true,
"Results": [
{
"Designations": [
{
"Id": "201011120813598729000000",
"ResourceUri": "/v1/accounts/20080624194124915376000000/qualifications/designations/201011120813598729000000",
"Code": "ABR",
"Name": "Accredited Buyer Rep",
"Dates": "2005-"
}
]
}
]
}
}
An Individual Qualification Item
URI: /<API Version>/accounts/<Account.Id>/qualifications/<Qualification>/<Qualification.Id>
| HTTP Method |
Description |
Notes |
| GET |
Returns qualification info for the specific qualification ID for the matching user |
|
| POST, PUT, DELETE |
Returns HTTP 405 (Method Not Allowed) |
Not implemented |
GET Request
Parameters:
GET Response
{
"D": {
"Success": true,
"Results": [
{
"Id": "201011120813598729000000",
"ResourceUri": "/v1/accounts/20080624194124915376000000/qualifications/designations/201011120813598729000000",
"Code": "ABR",
"Name": "Accredited Buyer Rep",
"Dates": "2005-"
}
]
}
}
Response Description
Supported qualification types are:
Designations,
Expertise,
Experience,
Languages,
Awards,
Memberships,
Education.
| Attribute |
Description |
| ResourceUri |
The resource URI to the particular qualification. |
| Id |
The unique id for the qualification. |
| Code |
(Designations only) The short code for the designation. |
| Name |
The name of the qualification type. |
| Dates |
A human-readable description of the time or duration of the qualification. |
Expansions
None.
API Explorer
The API Explorer does not currently support this service.