NAV

Custom Data Field(Last Updated : 02/22/2017)

PUT Custom Data Field

A report indicating whether your custom data field was successfully added or not will be pushed to your designated URL.

Body Parameters

Parameter Description
push_id The key for the specific push message.
request_id The key for the specific request.
customdata_id The custom data field's unique ID number.
status_code A code notifying the member of the reason for the error. Status Code List

Code sample for PUT Custom Data Field

"Example (Success):"
{
    "push_id" : 7778889990000,
    "request_id" : "1234561234567asdf123",
    "customdata_id" : 987987987980
}

"Example (Failure):"
{
    "push_id" : 7778889990000,
    "request_id" : "1234561234567asdf123",
    "status_code" : "MPFE1001"
}

POST Custom Data Field

A report indicating whether your custom data field was successfully updated or not will be pushed to your designated URL.

Body Parameters

Parameter Description
push_id The key for the specific push message.
request_id The key for the specific request.
customdata_id The custom data field's unique ID number.
status_code A code notifying the member of the reason for the error. Status Code List

Code sample for POST Custom Data Field

"Example (Success):"
{
    "push_id" : 7778889990000,
    "request_id" : "1234561234567asdf123",
    "customdata_id" : 987987987980
}

"Example (Failure):"
{
    "push_id" : 7778889990000,
    "request_id" : "1234561234567asdf123",
    "status_code" : "MPFE1002"
}

"Example (Failure): status_code - MPFE2004. Error_data will identify the auto campaign names responsible for the failure."
{
    "push_id" : 7778889990000,
    "request_id" : "1234561234567asdf123",
    "status_code" : "MPFE2004",
    "error_data" :
    [
        "Auto_Campaign_Name1","Auto_Campaign_Name2"
    ]
}

DELETE Custom Data Field

A report indicating whether your custom data field was successfully deleted or not will be pushed to your designated URL.

Body Parameters

Parameter Description
push_id The key for the specific push message.
request_id The key for the specific request.
customdata_id The custom data field's unique ID number.
status_code A code notifying the member of the reason for the error. Status Code List

Code sample for DELETE Custom Data Field

"Example (Success):"
{
    "push_id" : 7778889990000,
    "request_id" : "1234561234567asdf123",
    "customdata_id" : 987987987980
}

"Example (Failure):"
{
    "push_id" : 7778889990000,
    "request_id" : "1234561234567asdf123",
    "status_code" : "MPFE2301"
}

"Example (Failure): status_code - MPFE2004. Error_data will identify the auto campaign names responsible for the failure."
{
    "push_id" : 7778889990000,
    "request_id" : "1234561234567asdf123",
    "status_code" : "MPFE2004",
    "error_data" :
    [
        "Auto_Campaign_Name1","Auto_Campaign_Name2"
    ]
}