NAV

Keyword(Last Updated : 01/04/2017)

PUT Keyword

A report indicating whether your mobile keyword was successfully created 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.
keyword_id The keyword’s unique ID number.
status_code A code notifying the member of the reason for the error. Status Code List
error_data If there is additional data for the status_code, we will give it with this parameter.

Code sample for PUT Keyword

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

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

"Example (Failure): status_code - MPKE2301. You can get the invalid list ID’s via error_data."
{
  "request_id" : "1234561234567asdf123",
  "status_code" : "MPKE2301",
  "error_data" :
  [
    "987987987980"
  ]
}

POST Keyword

A report indicating whether your mobile keyword 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.
keyword_id The keyword’s unique ID number.
status_code A code notifying the member of the reason for the error. Status Code List
error_data If there is additional data for the status_code, we will give it with this parameter.

Code sample for POST Message

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

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

"Example (Failure): status_code - MPKE2301. You can get the invalid list ID’s via error_data."
{
  "request_id" : "1234561234567asdf123",
  "status_code" : "MPKE2301",
  "error_data" :
  [
    "987987987980"
  ]
}

DELETE Keyword

A report indicating whether your mobile keyword 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.
keyword_id The keyword’s unique ID number.
status_code A code notifying the member of the reason for the error. Status Code List

Code sample for DELETE Message

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

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