For more information on using API

PUT http://webapi.mymarketing.co.il/api/automations/{id}/PushNotificationSteps/{stepId}

Update an Push Notification step in the automation

Request Information

URI Parameters

Name

Description

Type

Additional information

id

Automation id

integer

Required

stepId

step id

integer

Required

Body Parameters

ApiAutomationPushNotificationStepUpdateInfo

Name

Description

Type

Additional information

push_name

Push name

string

Required

is_active

If the step is active

boolean

Required

working_days

campaign_id

globally unique identifier
title

string
subtitle

string

Request Formats

application/json, text/json

Sample:
{
  "push_name": "sample string 1",
  "is_active": true,
  "working_days": [
    {
      "day": 1,
      "from": "00:00:00.1234567",
      "to": "00:00:00.1234567"
    },
    {
      "day": 1,
      "from": "00:00:00.1234567",
      "to": "00:00:00.1234567"
    }
  ],
  "campaign_id": "b7427fe9-c857-46b4-bf8f-5e672090c04e",
  "title": "sample string 4",
  "subtitle": "sample string 5"
}

application/xml, text/xml

Sample:
<ApiAutomationPushNotificationStepUpdateInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models">
  <campaign_id>b7427fe9-c857-46b4-bf8f-5e672090c04e</campaign_id>
  <is_active>true</is_active>
  <push_name>sample string 1</push_name>
  <subtitle>sample string 5</subtitle>
  <title>sample string 4</title>
  <working_days xmlns:d2p1="http://schemas.datacontract.org/2004/07/ActiveTrail.BusinessLogic.Automations.Models">
    <d2p1:AutomationExtendedDetailsWorkingDays>
      <d2p1:day>1</d2p1:day>
      <d2p1:from>PT0.1234567S</d2p1:from>
      <d2p1:to>PT0.1234567S</d2p1:to>
    </d2p1:AutomationExtendedDetailsWorkingDays>
    <d2p1:AutomationExtendedDetailsWorkingDays>
      <d2p1:day>1</d2p1:day>
      <d2p1:from>PT0.1234567S</d2p1:from>
      <d2p1:to>PT0.1234567S</d2p1:to>
    </d2p1:AutomationExtendedDetailsWorkingDays>
  </working_days>
</ApiAutomationPushNotificationStepUpdateInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.