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

Récupère un ensemble d'intervenants 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

Ensemble des identifiants unique des intervenants

string

Required

Body Parameters

None.

Response Information

Resource Description

Retourne un ensemble d'ApiIntervenant.

Collection of ApiIntervenant
NameDescriptionTypeAdditional information
IdIntervenant

integer

None.

IdContact

integer

None.

IdRepresentant

integer

None.

IdAffaire

integer

None.

QualiteIntervenant

string

None.

QualiteRepresentant

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IdIntervenant": 1,
    "IdContact": 2,
    "IdRepresentant": 1,
    "IdAffaire": 3,
    "QualiteIntervenant": "sample string 4",
    "QualiteRepresentant": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfApiIntervenant xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ModuleoCommunServeur.Models.Api">
  <ApiIntervenant>
    <IdAffaire>3</IdAffaire>
    <IdContact>2</IdContact>
    <IdIntervenant>1</IdIntervenant>
    <IdRepresentant>1</IdRepresentant>
    <QualiteIntervenant>sample string 4</QualiteIntervenant>
    <QualiteRepresentant>sample string 5</QualiteRepresentant>
  </ApiIntervenant>
</ArrayOfApiIntervenant>

multipart/form-data

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

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