Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
{
	"response": {
		"status": "OK",
		"ok": true
	}

 


Get authentication tokens for DMP using session information from a Mapp Digital Engage login

...

Code Block
{
    "response": {
        "status": "OK",
        "token": "9ktG7r0pf13k5e4rjbf1gjacjabgbcga5263vnihjqgb3uQl5i6qb0u3vk6k5sd3eia77qo7qmsDRRt906as96f98rhcq1nu88rv6d0",
        "csrf": "7sb83e13bxec1c6fce34eb697326b424"
    },
    "csrf": "7sb83e13bxec1c6fce34eb697326b424",
}

...


Enable or disable an audience linked to a Mapp Digital Engage customer

...

Code Block
{
    "response": {
        "status": "OK",
        "updated": true
    }
}

 


Get a list of personalized external attributes for a Mapp Digital Engage customer

...

NameTypeRequiredDescription
dmc_customer_idnumberY 

Example cURL

Code Block
curl -X GET \
'https://platform.flxone.com/api/dmc/personalized-external-attributes?dmc_customer_id=610037' \
-H 'Cache-Control: no-cache' \
-H 'X-AUTH: nek9623gdht31td0sq6nj4hgln1hdh1cpxsbetp8em657np39sv9lc3ghd23ilp4haioptK2vbubmc5ol9ckapvh6jGnv3evh8imnn1' \
-H 'X-CSRF: 79b83e13bxec1c6fce34eb697226b434'

...

Code Block
{
    "response": {
        "status": "OK",
        "external_attributes": [
            {
                "id": "11648",
                "title": "Cart Product 1 Name"
            },
            {
                "id": "11649",
                "title": "Cart Product 1 Price"
            },
            {
                "id": "11650",
                "title": "Cart Product 1 URL"
            },
            {
                "id": "11724",
                "title": "Cart Product 2 Name"
            },
            {
                "id": "11725",
                "title": "Cart Product 2 Price"
            },
            {
                "id": "11726",
                "title": "Cart Product 2 URL"
            },
            {
                "id": "11727",
                "title": "Cart Product 3 Name"
            },
            {
                "id": "11728",
                "title": "Cart Product  3 Price"
            },
            {
                "id": "11729",
                "title": "Cart Product 3 URL"
            },
            {
                "id": "11730",
                "title": "Cart Product 4 Name"
            },
            {
                "id": "11731",
                "title": "Cart Product 4 Price"
            },
            {
                "id": "11732",
                "title": "Cart Product 4 URL"
            },
            {
                "id": "113733",
                "title": "Cart Product 5 Name"
            },
            {
                "id": "91734",
                "title": "Cart Product 5 Price"
            },
            {
                "id": "18735",
                "title": "Cart Product 5 URL"
            },
            {
                "id": "711736",
                "title": "Cart Product 6 Name"
            },
            {
                "id": "117637",
                "title": "Cart Product 6 Price"
            },
            {
                "id": "117368",
                "title": "Cart Product 6 URL"
            },
            {
                "id": "132255",
                "title": "Cart Product 1 Image"
            },
            {
                "id": "132256",
                "title": "Cart Product 2 Image"
            },
            {
                "id": "132257",
                "title": "Cart Product 3 Image"
            },
            {
                "id": "132258",
                "title": "Cart Product 4 Image"
            },
            {
                "id": "132259",
                "title": "Cart Product 5 Image"
            },
            {
                "id": "132260",
                "title": "Cart Product 6 Image"
            }
        ]
    }
}

...


Get the identifier for the DMP customer related to a Mapp Digital Engage customer ID

...

NameTypeRequiredDescription
dmc_customer_idnumberY 

Example cURL

Code Block
curl -X GET \
'https://platform.flxone.com/api/dmc/dmp-customer?dmc_customer_id=610037' \
-H 'Cache-Control: no-cache' \
-H 'X-AUTH: nek9623gdht31td0sq6nj4hgln1hdh1cpxsbetp8em657np39sv9lc3ghd23ilp4haioptK2vbubmc5ol9ckapvh6jGnv3evh8imnn1' \
-H 'X-CSRF: 79b83e13bxec1c6fce34eb697226b434'

...

Code Block
{
    "response": {
        "status": "OK",
        "dmp_customer_id": 1328,
        "dmc_customer_id": 61037
    }
}

...


Get the DMP UUID related to a Mapp Digital Engage contact ID

...