GET api/v2/socialdata/absence/profil/{id}

Retourne un profil par son ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

AbsenceProfileDto
NameDescriptionTypeAdditional 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.

Response Formats

application/json, text/json

Sample:
{
  "Id": "4ced9d0e-ea22-4c92-ae20-f79ee3e65fff",
  "Absences": [
    {
      "Id": "6a0715d5-49c6-4205-a8cf-bb56ec1d51c2",
      "ProfilId": "6e751645-c7e6-4de4-a5b9-c1b0eef56adf",
      "Name": "sample string 3",
      "DayTime": 4,
      "HalfDayTime": 5,
      "Payd": true,
      "ExtraHour": true,
      "Quota": true,
      "CR": true,
      "Order": 10,
      "Color": "sample string 11",
      "EditableHour": true,
      "AnalyticId": "af9a53aa-17d7-49bf-ae21-dd74a77d5454"
    },
    {
      "Id": "6a0715d5-49c6-4205-a8cf-bb56ec1d51c2",
      "ProfilId": "6e751645-c7e6-4de4-a5b9-c1b0eef56adf",
      "Name": "sample string 3",
      "DayTime": 4,
      "HalfDayTime": 5,
      "Payd": true,
      "ExtraHour": true,
      "Quota": true,
      "CR": true,
      "Order": 10,
      "Color": "sample string 11",
      "EditableHour": true,
      "AnalyticId": "af9a53aa-17d7-49bf-ae21-dd74a77d5454"
    }
  ],
  "CustomerId": "c1905709-f0d6-429d-9bb1-e86702f705da",
  "Name": "sample string 2",
  "Description": "sample string 3",
  "IsEditable": true
}

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>c1905709-f0d6-429d-9bb1-e86702f705da</CustomerId>
  <Description>sample string 3</Description>
  <IsEditable>true</IsEditable>
  <Name>sample string 2</Name>
  <Absences xmlns:d2p1="http://schemas.datacontract.org/2004/07/Vehizen.Domain.Dto.Contract">
    <d2p1:AbsenceDto>
      <d2p1:AnalyticId>af9a53aa-17d7-49bf-ae21-dd74a77d5454</d2p1:AnalyticId>
      <d2p1:CR>true</d2p1:CR>
      <d2p1:Color>sample string 11</d2p1:Color>
      <d2p1:DayTime>4</d2p1:DayTime>
      <d2p1:EditableHour>true</d2p1:EditableHour>
      <d2p1:ExtraHour>true</d2p1:ExtraHour>
      <d2p1:HalfDayTime>5</d2p1:HalfDayTime>
      <d2p1:Name>sample string 3</d2p1:Name>
      <d2p1:Order>10</d2p1:Order>
      <d2p1:Payd>true</d2p1:Payd>
      <d2p1:ProfilId>6e751645-c7e6-4de4-a5b9-c1b0eef56adf</d2p1:ProfilId>
      <d2p1:Quota>true</d2p1:Quota>
      <d2p1:Id>6a0715d5-49c6-4205-a8cf-bb56ec1d51c2</d2p1:Id>
    </d2p1:AbsenceDto>
    <d2p1:AbsenceDto>
      <d2p1:AnalyticId>af9a53aa-17d7-49bf-ae21-dd74a77d5454</d2p1:AnalyticId>
      <d2p1:CR>true</d2p1:CR>
      <d2p1:Color>sample string 11</d2p1:Color>
      <d2p1:DayTime>4</d2p1:DayTime>
      <d2p1:EditableHour>true</d2p1:EditableHour>
      <d2p1:ExtraHour>true</d2p1:ExtraHour>
      <d2p1:HalfDayTime>5</d2p1:HalfDayTime>
      <d2p1:Name>sample string 3</d2p1:Name>
      <d2p1:Order>10</d2p1:Order>
      <d2p1:Payd>true</d2p1:Payd>
      <d2p1:ProfilId>6e751645-c7e6-4de4-a5b9-c1b0eef56adf</d2p1:ProfilId>
      <d2p1:Quota>true</d2p1:Quota>
      <d2p1:Id>6a0715d5-49c6-4205-a8cf-bb56ec1d51c2</d2p1:Id>
    </d2p1:AbsenceDto>
  </Absences>
  <Id>4ced9d0e-ea22-4c92-ae20-f79ee3e65fff</Id>
</AbsenceProfileDto>