GET api/Interpreters/GetInterpreterAvailabilty?languageId={languageId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
languageId | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
InterpreterAvailabiltyName | Description | Type | Additional information |
---|---|---|---|
LanguageName | string |
None. |
|
LanguageId | integer |
None. |
|
IsVideoAvailable | boolean |
None. |
|
IsPhoneAvailable | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "LanguageName": "sample string 1", "LanguageId": 2, "IsVideoAvailable": true, "IsPhoneAvailable": true }
application/xml, text/xml
Sample:
<InterpreterAvailabilty xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIClassLibrary.DataAccess"> <IsPhoneAvailable>true</IsPhoneAvailable> <IsVideoAvailable>true</IsVideoAvailable> <LanguageId>2</LanguageId> <LanguageName>sample string 1</LanguageName> </InterpreterAvailabilty>