GET api/cogeo/groupe/multi?ids={ids}

Récupère un ensemble de groupes d'affaires en fonction d'un ensemble identifiants unique. Séparateur entre les ids : ',' (virgule). Limite de 200 éléments.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ids

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ApiGroupe
NameDescriptionTypeAdditional information
IdGroupe

integer

None.

Numero

string

None.

Objet

string

None.

IdSite

integer

None.

IdService

integer

None.

IdResponsable

integer

None.

IdActeurEnCharge

integer

None.

IdClient

integer

None.

TypeInterventionClient

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IdGroupe": 1,
    "Numero": "sample string 2",
    "Objet": "sample string 3",
    "IdSite": 1,
    "IdService": 1,
    "IdResponsable": 1,
    "IdActeurEnCharge": 1,
    "IdClient": 1,
    "TypeInterventionClient": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfApiGroupe xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ModuleoCommunServeur.Models.Api">
  <ApiGroupe>
    <IdActeurEnCharge>1</IdActeurEnCharge>
    <IdClient>1</IdClient>
    <IdGroupe>1</IdGroupe>
    <IdResponsable>1</IdResponsable>
    <IdService>1</IdService>
    <IdSite>1</IdSite>
    <Numero>sample string 2</Numero>
    <Objet>sample string 3</Objet>
    <TypeInterventionClient>sample string 4</TypeInterventionClient>
  </ApiGroupe>
</ArrayOfApiGroupe>

multipart/form-data

Sample:
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name=""

System.Collections.Generic.HashSet`1[ModuleoCommunServeur.Models.Api.ApiGroupe]
--MultipartDataMediaFormatterBoundary1q2w3e--