POST api/ContactManager/InsertorUpdateTrackingDetails

Request Information

URI Parameters

None.

Body Parameters

BrokenRegistrationTracking
NameDescriptionTypeAdditional information
first_name

string

None.

last_name

string

None.

email_address

string

None.

primary_country_code

string

None.

primary_phone_code

string

None.

primary_phone

string

None.

product_sku_id

Collection of integer

None.

student_id

integer

None.

is_contact_update

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "first_name": "sample string 1",
  "last_name": "sample string 2",
  "email_address": "sample string 3",
  "primary_country_code": "sample string 4",
  "primary_phone_code": "sample string 5",
  "primary_phone": "sample string 6",
  "product_sku_id": [
    1,
    2
  ],
  "student_id": 7,
  "is_contact_update": true
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BrokenRegistrationTracking'.

Response Information

Resource Description

ReturnResult
NameDescriptionTypeAdditional information
Status

boolean

None.

Message

string

None.

AdditionalData

Object

None.

ObjAppResponseMessage

Gets or sets the mobile App response message

AppResponseMessage

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "Message": "sample string 2",
  "AdditionalData": {},
  "ObjAppResponseMessage": {
    "Status": true,
    "Message": "sample string 2",
    "AdditionalData": "sample string 3"
  }
}