This wiki is no longer being updated as of December 10, 2025.
  • In an effort to make our documentation better for our users, we are consolidating and streamlining the documents.
  • Please see our new, updated documentation at: Melissa Docs or https://docs.melissa.com/

Global Name:REST JSONP

From Melissa Data Wiki
Jump to navigation Jump to search

← Global Name

Global Name Navigation
Introduction
Licensing
Input/Request
Request Fields
Response Fields
Examples
REST JSON
REST JSONP
REST XML
Batch JSON
Batch SOAP
Batch XML
Result Codes
Result Code Use
Global Name Result Codes
Sample Code



REST Request

There is no recordID element because a REST request can only submit one record per request.

https://globalname.melissadata.net/V3/WEB/GlobalName/doGlobalName
?t={TransmissionReference}
&id={CustomerId}
&opt={Options}
&comp={Company}
&full={FullName}
&callback={Callback}


JSONP Response

Callback{
  "Version":"string",
  "TransmissionReference":"string",
  "TransmissionResults":"string",
  "TotalRecords":"string",
  "Records":[{
    "RecordID":"string",
    "Results":"string",
    "Company":"string",
    "NamePrefix":"string",
    "NameFirst":"string",
    "NameMiddle":"string",
    "NameLast":"string",
    "NameSuffix":"string",
    "Gender":"string",
    "NamePrefix2":"string",
    "NameFirst2":"string",
    "NameMiddle2":"string",
    "NameLast2":"string",
    "NameSuffix2":"string",
    "Gender2":"string",
    "Salutation":"string",
    "NameProfTitle":"string",
    "NameNickname":"string",
    "NameProfTitle2":"string",
    "NameNickname2":"string",
    "Extras":"string"
  }]
}