[HTTP GET] ~/journeys/{journeyid}

Description: Get the details of a specific Journey

Request Information

URI Parameters

NameDescriptionTypeAdditional information
journeyid

the specific Journey Id

integer

Required

Body Parameters

None

Response Information

Description

Successful Response - OK (200):

A Journey

Response Content : Campaign

NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

AccountId

integer

None.

ListId

integer

None.

StartDate

date

None.

EndDate

date

None.

CmLink

string

None.

Comment

string

None.

Status

string

None.

Reach

integer

None.

Interactions

integer

None.

Unsubscribes

integer

None.

ShowInAgentPortal

boolean

None.

Tags

Collection of string

None.

Emails

Object

None.

LandingPages

Object

None.

TextMessages

Object

None.

EDocuments

Object

None.

Channels

string

None.


Response Codes:

  • 200 - OK
    • The specified Journey was retrieved and returned successfully.
  • 401 - Unauthorized
    • Request has been denied as it lacks valid Authentication credentials.
  • 403 - Forbidden
    • The user does not have the relevant permissions to perform this action.
  • 404 - NotFound
    • The specified Journey was not found.
  • 500 - InternalServerError
    • An error occurred while processing this request.

Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Name": "sample string 2",
  "AccountId": 3,
  "ListId": 1,
  "StartDate": "2024-12-27T18:16:57.2824295+00:00",
  "EndDate": "2024-12-27T18:16:57.2824295+00:00",
  "CmLink": "sample string 4",
  "Comment": "sample string 5",
  "Status": "sample string 6",
  "Reach": 7,
  "Interactions": 8,
  "Unsubscribes": 9,
  "ShowInAgentPortal": true,
  "Tags": [
    "sample string 1",
    "sample string 2"
  ],
  "Emails": {},
  "LandingPages": {},
  "TextMessages": {},
  "EDocuments": {},
  "Channels": "sample string 15"
}

application/csp-report

Sample:
{"Id":1,"Name":"sample string 2","AccountId":3,"ListId":1,"StartDate":"2024-12-27T18:16:57.2824295+00:00","EndDate":"2024-12-27T18:16:57.2824295+00:00","CmLink":"sample string 4","Comment":"sample string 5","Status":"sample string 6","Reach":7,"Interactions":8,"Unsubscribes":9,"ShowInAgentPortal":true,"Tags":["sample string 1","sample string 2"],"Emails":{},"LandingPages":{},"TextMessages":{},"EDocuments":{},"Channels":"sample string 15"}

application/xml, text/xml

Sample:
<Campaign xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/W50Common.Models.DTO">
  <AccountId>3</AccountId>
  <Channels>sample string 15</Channels>
  <CmLink>sample string 4</CmLink>
  <Comment>sample string 5</Comment>
  <EDocuments />
  <Emails />
  <EndDate>2024-12-27T18:16:57.2824295+00:00</EndDate>
  <Id>1</Id>
  <Interactions>8</Interactions>
  <LandingPages />
  <ListId>1</ListId>
  <Name>sample string 2</Name>
  <Reach>7</Reach>
  <ShowInAgentPortal>true</ShowInAgentPortal>
  <StartDate>2024-12-27T18:16:57.2824295+00:00</StartDate>
  <Status>sample string 6</Status>
  <Tags xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Tags>
  <TextMessages />
  <Unsubscribes>9</Unsubscribes>
</Campaign>