Retrieves the marketing segment with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The marketing segment id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the marketing segment, or 404 Not Found if it doesn't exist.

marketing_segment
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
segment

Marketing segment Name

string

Required

Max length: 50

visit_frequency_days_interval

Number of days between 2 visits

integer
sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "68a0a145-7dbc-424a-bc16-e1634797754a",
  "segment": "sample string 2",
  "visit_frequency_days_interval": 3,
  "sales_organization_id": "8f07e3eb-1e5b-437b-9dc1-d07182f4e97c",
  "modified_dateutc": "2026-09-16T10:17:18.345329+00:00"
}

application/xml, text/xml

Sample:
<marketing_segment xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>68a0a145-7dbc-424a-bc16-e1634797754a</id>
  <modified_dateutc>2026-09-16T10:17:18.345Z</modified_dateutc>
  <sales_organization_id>8f07e3eb-1e5b-437b-9dc1-d07182f4e97c</sales_organization_id>
  <segment>sample string 2</segment>
  <visit_frequency_days_interval>3</visit_frequency_days_interval>
</marketing_segment>