Site Survey
Retrieve the site survey record associated with the specified merchant.
The merchant's unique identification number.
Returns a Site Survey successfully.
No content.
Bad Request: If merchant number is null or empty.
Forbidden: The user does not have the necessary permissions to access this resource.
Not Found: Site Survey not found.
Internal Server Error: This could be due to system errors. Please contact support for assistance
GET /api/demographics/v1/SiteSurveys/{merchantNumber} HTTP/1.1
Host:
Accept: */*
{
"siteTypeID": "3",
"otherSiteTypeDescription": "Mobile Kiosk",
"siteSurveyConductedInPerson": "true",
"merchantAcquisitionTypeID": "2",
"validIDVerified": "true",
"inventoryMatchesProductSold": "false",
"inventoryMatchesProductSoldComments": "The inventory contains outdated models not listed in the product catalog.",
"agreementAccepted": "true",
"selfSignUpApplication": false
}Update an existing site survey record for the specified merchant.
Note: The updated site survey must include the following details in request body:
SiteSurveyId
Agreement acceptance status
Site description
Additional metadata
The merchant's unique identification number.
Site values are from 1 to 4, representing different site types. Possible values: 1 - Other 2 - BrickAndMortar 3 - Tradeshow 4 - Residence
3Description of the site type, used when SiteTypeID is 1 (Other).
Mobile KioskIndicates whether the site survey was conducted in person.
trueThe type of merchant acquisition. Valid values are from 1 to 3, representing acquisition methods.
2Indicates whether a valid ID has been verified.
trueIndicates whether the inventory matches the products being sold.
falseAdditional comments if the inventory does not match the products being sold.
The inventory contains outdated models not listed in the product catalog.Indicates whether the agreement has been accepted by the merchant.
trueIndicates whether the application was submitted via self-sign-up.
falseSaves a Site Survey successfully.
Bad request: If merchant number is null or empty, or data is invalid.
Forbidden: The user does not have the necessary permissions to access this resource.
Not Found: Resource not found exception.
Internal Server Error: This could be due to system errors. Please contact support for assistance
PUT /api/demographics/v1/SiteSurveys/{merchantNumber} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 363
{
"siteTypeID": "3",
"otherSiteTypeDescription": "Mobile Kiosk",
"siteSurveyConductedInPerson": "true",
"merchantAcquisitionTypeID": "2",
"validIDVerified": "true",
"inventoryMatchesProductSold": "false",
"inventoryMatchesProductSoldComments": "The inventory contains outdated models not listed in the product catalog.",
"agreementAccepted": "true",
"selfSignUpApplication": false
}{
"siteTypeID": "3",
"otherSiteTypeDescription": "Mobile Kiosk",
"siteSurveyConductedInPerson": "true",
"merchantAcquisitionTypeID": "2",
"validIDVerified": "true",
"inventoryMatchesProductSold": "false",
"inventoryMatchesProductSoldComments": "The inventory contains outdated models not listed in the product catalog.",
"agreementAccepted": "true",
"selfSignUpApplication": false
}Was this helpful?

