POST api/message/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

None.

Body Parameters

MessageViewDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Content

string

None.

Type

string

None.

Status

StatusDto

None.

From

string

None.

To

string

None.

Subject

string

None.

Provider

string

None.

Created

date

None.

Updated

date

None.

Scheduled

date

None.

PersonId

globally unique identifier

None.

ProviderId

string

None.

Person

EntityStateDto

None.

Order

EntityStatusDto

None.

Queue

EntityStatusDto

None.

ProviderStatus

string

None.

Shop

EntityDto

None.

RetriesMade

integer

None.

ProviderMessage

string

None.

ParentId

globally unique identifier

None.

Parent

EntityDto

None.

Children

Collection of EntityDto

None.

ForceRun

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "51afc8e7-ffbb-4788-b01d-51dcbe111dbc",
  "content": "sample string 2",
  "type": "sample string 3",
  "status": {
    "id": 1,
    "name": "sample string 2",
    "readableName": "sample string 3",
    "type": "sample string 4",
    "color": "sample string 5"
  },
  "from": "sample string 4",
  "to": "sample string 5",
  "subject": "sample string 6",
  "provider": "sample string 7",
  "created": "2025-12-30T23:37:51.3878487+01:00",
  "updated": "2025-12-30T23:37:51.3878487+01:00",
  "scheduled": "2025-12-30T23:37:51.3878487+01:00",
  "personId": "6faf103d-a10d-450c-8bc4-a1dfaefae047",
  "providerId": "sample string 10",
  "person": {
    "id": "7552f33f-59d6-48e3-8b6b-4a9a7b46acb2",
    "name": "sample string 2",
    "type": "sample string 3",
    "isActive": true,
    "isRunning": true,
    "created": "2025-12-30T23:37:51.3878487+01:00",
    "updated": "2025-12-30T23:37:51.3878487+01:00"
  },
  "order": {
    "id": "542a0a9f-2a9c-4c37-85d0-ba07a0c6e184",
    "name": "sample string 2",
    "type": "sample string 3",
    "isActive": true,
    "isRunning": true,
    "status": {
      "id": 1,
      "name": "sample string 2",
      "readableName": "sample string 3",
      "type": "sample string 4",
      "color": "sample string 5"
    },
    "created": "2025-12-30T23:37:51.3878487+01:00",
    "updated": "2025-12-30T23:37:51.3878487+01:00",
    "internalName": "sample string 6"
  },
  "queue": {
    "id": "542a0a9f-2a9c-4c37-85d0-ba07a0c6e184",
    "name": "sample string 2",
    "type": "sample string 3",
    "isActive": true,
    "isRunning": true,
    "status": {
      "id": 1,
      "name": "sample string 2",
      "readableName": "sample string 3",
      "type": "sample string 4",
      "color": "sample string 5"
    },
    "created": "2025-12-30T23:37:51.3878487+01:00",
    "updated": "2025-12-30T23:37:51.3878487+01:00",
    "internalName": "sample string 6"
  },
  "providerStatus": "sample string 11",
  "shop": {
    "id": "bdb87980-8c8a-4a43-bdd7-91f9b10d8b33",
    "name": "sample string 2",
    "type": "sample string 3"
  },
  "retriesMade": 1,
  "providerMessage": "sample string 12",
  "parentId": "86e8cbb3-6ce1-4521-9dff-6ba9ac3e9e9c",
  "parent": {
    "id": "bdb87980-8c8a-4a43-bdd7-91f9b10d8b33",
    "name": "sample string 2",
    "type": "sample string 3"
  },
  "children": [
    {
      "id": "bdb87980-8c8a-4a43-bdd7-91f9b10d8b33",
      "name": "sample string 2",
      "type": "sample string 3"
    },
    {
      "id": "bdb87980-8c8a-4a43-bdd7-91f9b10d8b33",
      "name": "sample string 2",
      "type": "sample string 3"
    }
  ],
  "forceRun": true
}

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.