GetVelocityEmailSettings
- Method
- ExampleRequest
- ExampleResponse
GetVelocityEmailSettings(GetVelocityEmailSettingsRequest)
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| GetVelocityEmailSettingsRequest | request |
Returns
| TYPE | DESCRIPTION |
|---|---|
| GetVelocityEmailSettingsResponse |
Example GetVelocityEmailSettingsRequest
Input Method: XML
<xml>
<custServProviderId>######</custServProviderId>
<request_email>none@example.com</request_email>
<entity_id>######</entity_id>
</xml>
Input Method: JSON
{
"custServProviderId": "######",
"request_email": "none@example.com",
"entity_id": "######",
}
Example GetVelocityEmailSettingsResponse
Response: XML
<GetVelocityEmailSettingsResponse>
<HTTPStatusCode>200</HTTPStatusCode>
<GetVelocityEmailSettings>
<GetVelocityEmailSettingsResult>
<AdditionalEmailSettingsType>None</AdditionalEmailSettingsType>
<EntityId>######</EntityId>
<EntityName>ABC Co</EntityName>
<MerchantVelEmailAddress/>
<OwnerVelFromEmailAddress/>
<VELMSID>######</VELMSID>
<VelEmailAddress>none@example.com</VelEmailAddress>
<VelEmailEnabled>true</VelEmailEnabled>
<VelocityMerchantLocationSettings/>
</GetVelocityEmailSettingsResult>
</GetVelocityEmailSettings>
</GetVelocityEmailSettingsResponse>
Response: JSON
{
"HTTPStatusCode": "200",
"GetVelocityEmailSettings":
{
"GetVelocityEmailSettingsResult":
{
"AdditionalEmailSettingsType": "None",
"EntityId": ######,
"EntityName": "ABC Co",
"MerchantVelEmailAddress": null,
"OwnerVelFromEmailAddress": "none@example.com",
"VELMSID": ######,
"VelEmailAddress": "none@example.com",
"VelEmailEnabled": true,
"VelocityMerchantLocationSettings": {}
}
}
}