POST address/addressValidation

Action will allow users to validate address against the address validation tool we already have in our application. It will provide address suggestions agains provided address.

EndPoint

Production Url: https://enterprise.freightpop.com/address/addressValidation

Sandbox Url: https://sandbox-api.freightpop.com/address/addressValidation

Request Information

URI Parameters

None.

Body Parameters

AddressValidation
NameDescriptionTypeAdditional information
Address

AddressValidationWrapperDto

None.

Request Formats

application/json, text/json

Sample:
{
  "Address": {
    "Street1": "sample string 1",
    "City": "sample string 2",
    "State": "sample string 3",
    "Zip": "sample string 4",
    "Country": "sample string 5",
    "ValidateZipCodePlusFour": true
  }
}

Response Information

Resource Description

BadResponse
NameDescriptionTypeAdditional information
Data

Data returned by api

Object

None.

Code

Response code returned by api

HttpStatusCode

None.

Message

Human readable message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": 100,
  "Message": "sample string 2",
  "Data": {}
}