GET api/v2/socialdata/absence/profil/{id}
Retourne un profil par son ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
AbsenceProfileDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
identifiant |
globally unique identifier |
None. |
| Absences |
absences |
Collection of AbsenceDto |
None. |
| CustomerId |
identifiant du client |
globally unique identifier |
None. |
| Name |
Nom |
string |
None. |
| Description |
Description |
string |
None. |
| IsEditable |
indique si il est éditable |
boolean |
None. |
| NbMonthlyHours | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "fc1a5169-6ab4-4bb4-81ed-78fc34f60c18",
"Absences": [
{
"Id": "9a4376ed-219c-498f-bfaa-784b69743da5",
"ProfilId": "47d7f944-dda5-4655-9076-1c8c46b47fe9",
"Name": "sample string 3",
"DayTime": 4,
"HalfDayTime": 5,
"Payd": true,
"ExtraHour": true,
"Quota": true,
"CR": true,
"NightCR": true,
"Order": 11,
"Color": "sample string 12",
"EditableHour": true,
"AnalyticId": "f561db6f-5fb1-4ad3-81c9-a7a986cbb30b",
"AnalyticCode": "sample string 14",
"IsLinkedToAnyDriver": true
},
{
"Id": "9a4376ed-219c-498f-bfaa-784b69743da5",
"ProfilId": "47d7f944-dda5-4655-9076-1c8c46b47fe9",
"Name": "sample string 3",
"DayTime": 4,
"HalfDayTime": 5,
"Payd": true,
"ExtraHour": true,
"Quota": true,
"CR": true,
"NightCR": true,
"Order": 11,
"Color": "sample string 12",
"EditableHour": true,
"AnalyticId": "f561db6f-5fb1-4ad3-81c9-a7a986cbb30b",
"AnalyticCode": "sample string 14",
"IsLinkedToAnyDriver": true
}
],
"CustomerId": "17e0db85-76d0-487d-ad1f-3db38809fc50",
"Name": "sample string 2",
"Description": "sample string 3",
"IsEditable": true,
"NbMonthlyHours": 5
}
application/xml, text/xml
Sample:
<AbsenceProfileDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Vehizen.Domain.Dto.Absence">
<CustomerId>17e0db85-76d0-487d-ad1f-3db38809fc50</CustomerId>
<Description>sample string 3</Description>
<IsEditable>true</IsEditable>
<Name>sample string 2</Name>
<NbMonthlyHours>5</NbMonthlyHours>
<Absences xmlns:d2p1="http://schemas.datacontract.org/2004/07/Vehizen.Domain.Dto.Contract">
<d2p1:AbsenceDto>
<d2p1:AnalyticCode>sample string 14</d2p1:AnalyticCode>
<d2p1:AnalyticId>f561db6f-5fb1-4ad3-81c9-a7a986cbb30b</d2p1:AnalyticId>
<d2p1:CR>true</d2p1:CR>
<d2p1:Color>sample string 12</d2p1:Color>
<d2p1:DayTime>4</d2p1:DayTime>
<d2p1:EditableHour>true</d2p1:EditableHour>
<d2p1:ExtraHour>true</d2p1:ExtraHour>
<d2p1:HalfDayTime>5</d2p1:HalfDayTime>
<d2p1:IsLinkedToAnyDriver>true</d2p1:IsLinkedToAnyDriver>
<d2p1:Name>sample string 3</d2p1:Name>
<d2p1:NightCR>true</d2p1:NightCR>
<d2p1:Order>11</d2p1:Order>
<d2p1:Payd>true</d2p1:Payd>
<d2p1:ProfilId>47d7f944-dda5-4655-9076-1c8c46b47fe9</d2p1:ProfilId>
<d2p1:Quota>true</d2p1:Quota>
<d2p1:Id>9a4376ed-219c-498f-bfaa-784b69743da5</d2p1:Id>
</d2p1:AbsenceDto>
<d2p1:AbsenceDto>
<d2p1:AnalyticCode>sample string 14</d2p1:AnalyticCode>
<d2p1:AnalyticId>f561db6f-5fb1-4ad3-81c9-a7a986cbb30b</d2p1:AnalyticId>
<d2p1:CR>true</d2p1:CR>
<d2p1:Color>sample string 12</d2p1:Color>
<d2p1:DayTime>4</d2p1:DayTime>
<d2p1:EditableHour>true</d2p1:EditableHour>
<d2p1:ExtraHour>true</d2p1:ExtraHour>
<d2p1:HalfDayTime>5</d2p1:HalfDayTime>
<d2p1:IsLinkedToAnyDriver>true</d2p1:IsLinkedToAnyDriver>
<d2p1:Name>sample string 3</d2p1:Name>
<d2p1:NightCR>true</d2p1:NightCR>
<d2p1:Order>11</d2p1:Order>
<d2p1:Payd>true</d2p1:Payd>
<d2p1:ProfilId>47d7f944-dda5-4655-9076-1c8c46b47fe9</d2p1:ProfilId>
<d2p1:Quota>true</d2p1:Quota>
<d2p1:Id>9a4376ed-219c-498f-bfaa-784b69743da5</d2p1:Id>
</d2p1:AbsenceDto>
</Absences>
<Id>fc1a5169-6ab4-4bb4-81ed-78fc34f60c18</Id>
</AbsenceProfileDto>