POST Mail/SendEmail

Request Information

URI Parameters

None.

Body Parameters

LinkedValueModel
NameDescriptionTypeAdditional information
cardType

string

None.

cardIcon

string

None.

valueText

string

None.

nameOfValue

string

None.

subValueText

string

None.

nameOfSubValue

string

None.

arrowIcon

string

None.

arrowValue

decimal number

None.

sparkline

Collection of integer

None.

sparklineLineColor

string

None.

cardHeader

string

None.

dataSource

Collection of DataSourceModel

None.

cardLinkedValues

Collection of CardLinkedValues

None.

Request Formats

application/json, text/json

Sample:
{
  "cardType": "sample string 1",
  "cardIcon": "sample string 2",
  "valueText": "sample string 3",
  "nameOfValue": "sample string 4",
  "subValueText": "sample string 5",
  "nameOfSubValue": "sample string 6",
  "arrowIcon": "sample string 7",
  "arrowValue": 8.0,
  "sparkline": [
    1,
    2
  ],
  "sparklineLineColor": "sample string 9",
  "cardHeader": "sample string 10",
  "dataSource": [
    {
      "type": "sample string 1",
      "percentage": 2.0
    },
    {
      "type": "sample string 1",
      "percentage": 2.0
    }
  ],
  "cardLinkedValues": [
    {
      "value": 1.0,
      "valueText": "sample string 2",
      "nameOfValue": "sample string 3",
      "arrowIcon": "sample string 4",
      "arrowValue": 5.0,
      "sparkline": [
        1,
        2
      ],
      "sparklineLineColor": "sample string 6",
      "cardHeader": "sample string 7"
    },
    {
      "value": 1.0,
      "valueText": "sample string 2",
      "nameOfValue": "sample string 3",
      "arrowIcon": "sample string 4",
      "arrowValue": 5.0,
      "sparkline": [
        1,
        2
      ],
      "sparklineLineColor": "sample string 6",
      "cardHeader": "sample string 7"
    }
  ]
}

application/xml, text/xml

Sample:
<LinkedValueModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WiSDoM5.BI_API.Models">
  <arrowIcon>sample string 7</arrowIcon>
  <arrowValue>8</arrowValue>
  <cardHeader>sample string 10</cardHeader>
  <cardIcon>sample string 2</cardIcon>
  <cardLinkedValues>
    <CardLinkedValues>
      <arrowIcon>sample string 4</arrowIcon>
      <arrowValue>5</arrowValue>
      <cardHeader>sample string 7</cardHeader>
      <nameOfValue>sample string 3</nameOfValue>
      <sparkline xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:int>1</d4p1:int>
        <d4p1:int>2</d4p1:int>
      </sparkline>
      <sparklineLineColor>sample string 6</sparklineLineColor>
      <value>1</value>
      <valueText>sample string 2</valueText>
    </CardLinkedValues>
    <CardLinkedValues>
      <arrowIcon>sample string 4</arrowIcon>
      <arrowValue>5</arrowValue>
      <cardHeader>sample string 7</cardHeader>
      <nameOfValue>sample string 3</nameOfValue>
      <sparkline xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:int>1</d4p1:int>
        <d4p1:int>2</d4p1:int>
      </sparkline>
      <sparklineLineColor>sample string 6</sparklineLineColor>
      <value>1</value>
      <valueText>sample string 2</valueText>
    </CardLinkedValues>
  </cardLinkedValues>
  <cardType>sample string 1</cardType>
  <dataSource>
    <DataSourceModel>
      <percentage>2</percentage>
      <type>sample string 1</type>
    </DataSourceModel>
    <DataSourceModel>
      <percentage>2</percentage>
      <type>sample string 1</type>
    </DataSourceModel>
  </dataSource>
  <nameOfSubValue>sample string 6</nameOfSubValue>
  <nameOfValue>sample string 4</nameOfValue>
  <sparkline xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </sparkline>
  <sparklineLineColor>sample string 9</sparklineLineColor>
  <subValueText>sample string 5</subValueText>
  <valueText>sample string 3</valueText>
</LinkedValueModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>