GET Api/LeadSources/{id}

Wyszukuje object LeadSource po jego identyfikatorze

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

unikalny identyfikator obiektu

integer

Required

Body Parameters

None.

Response Information

Resource Description

obiekt LeadSource posiadajÄ…cy wybrany identyfikator

LeadSourceDto
NameDescriptionTypeAdditional information
LeadSourceId

integer

Required

OrganizationalUnitId

integer

Required

Name

string

Required

Response Formats

application/json, text/json

Sample:
{
  "leadSourceId": 1,
  "organizationalUnitId": 2,
  "name": "sample string 3"
}

multipart/form-data

Sample:
{"leadSourceId":1,"organizationalUnitId":2,"name":"sample string 3"}

application/xml, text/xml

Sample:
<LeadSourceDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <LeadSourceId>1</LeadSourceId>
  <OrganizationalUnitId>2</OrganizationalUnitId>
  <Name>sample string 3</Name>
</LeadSourceDto>