For more information on using API

GET http://webapi.mymarketing.co.il/api/account/sms-sendingprofiles

Get the account Sms Sending Profiles

Request Information

URI Parameters

Body Parameters

None.

Response Information

Resource Description

Collection of ApiUserSmsProfile

Name

Description

Type

Additional information

id

id

integer
name

name

string
fromNumber

fromNumber

string
updatedOn

updatedOn

date
isDefault

isDefault

boolean

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "name": "sample string 2",
    "fromNumber": "sample string 3",
    "updatedOn": "2016-12-24T14:12:12",
    "isDefault": true
  },
  {
    "id": 1,
    "name": "sample string 2",
    "fromNumber": "sample string 3",
    "updatedOn": "2016-12-24T14:12:12",
    "isDefault": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfApiUserSmsProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models">
  <ApiUserSmsProfile>
    <FromNumber>sample string 3</FromNumber>
    <Id>1</Id>
    <IsDefault>true</IsDefault>
    <Name>sample string 2</Name>
    <UpdatedOn>2016-12-24T14:12:12</UpdatedOn>
  </ApiUserSmsProfile>
  <ApiUserSmsProfile>
    <FromNumber>sample string 3</FromNumber>
    <Id>1</Id>
    <IsDefault>true</IsDefault>
    <Name>sample string 2</Name>
    <UpdatedOn>2016-12-24T14:12:12</UpdatedOn>
  </ApiUserSmsProfile>
</ArrayOfApiUserSmsProfile>