For more information on using API

GET https://webapi.mymarketing.co.il/api/account/contentCategories/{id}

Get a specific category details by providing its' ID.

Request Information

URI Parameters

Name

Description

Type

Additional information

id

Category id. Can be found using the endpoint "Get the account's list of email templates categories."

integer

Required

Body Parameters

None.

Response Information

Resource Description

ApiContentCategory

Name

Description

Type

Additional information

id

Category id

integer
created

Date Created

date
name

Category name

string
display_order

Display Order

integer
is_default

If the Category is Default

boolean

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "created": "2016-12-24T14:12:12",
  "name": "sample string 3",
  "display_order": 4,
  "is_default": true
}

application/xml, text/xml

Sample:
<ApiContentCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models">
  <display_order>4</display_order>
  <is_default>true</is_default>
  <name>sample string 3</name>
  <created>2016-12-24T14:12:12</created>
  <id>1</id>
</ApiContentCategory>