GET api/bookings/cyberTrips/profiles/{fileNumber}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fileNumber | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Cyberlogic.eTourism.Domain.ViewModels.Profiles.CyberTripsProfileDto| Name | Description | Type | Additional information |
|---|---|---|---|
| MasterId | integer |
None. |
|
| string |
None. |
||
| MobilePhone | string |
None. |
|
| NotificationEmail | boolean |
None. |
|
| NotificationSMS | boolean |
None. |
|
| Error | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"MasterId": 1,
"Email": "sample string 2",
"MobilePhone": "sample string 3",
"NotificationEmail": true,
"NotificationSMS": true,
"Error": "sample string 6"
}
text/html
Sample:
{"MasterId":1,"Email":"sample string 2","MobilePhone":"sample string 3","NotificationEmail":true,"NotificationSMS":true,"Error":"sample string 6"}
application/xml, text/xml
Sample:
<CyberTripsProfileDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyberlogic.eTourism.Domain.ViewModels.Profiles"> <Email>sample string 2</Email> <Error>sample string 6</Error> <MasterId>1</MasterId> <MobilePhone>sample string 3</MobilePhone> <NotificationEmail>true</NotificationEmail> <NotificationSMS>true</NotificationSMS> </CyberTripsProfileDto>