Skip to content

Instantly share code, notes, and snippets.

@karlhorky
Created October 25, 2015 11:55
Show Gist options
  • Save karlhorky/3cbbbf0b07a9f5ebde16 to your computer and use it in GitHub Desktop.
Save karlhorky/3cbbbf0b07a9f5ebde16 to your computer and use it in GitHub Desktop.
saasquatch-cli API Configuration
{
"defaultResponse": {
"totalAccepted": 1,
"totalRejected": 0,
"accepted": [
{ "address": "[email protected]" }
],
"rejected": []
},
"exchanges": [
{
"name": "success",
"request": {
"sendingAccountId": "219065",
"sendingUserId" : "219065",
"recipients" : [
"[email protected]"
]
},
"response": {
"totalAccepted": 1,
"totalRejected": 0,
"accepted": [
{ "address": "[email protected]" }
],
"rejected": []
}
},
{
"name": "failureRecipient",
"request": {
"sendingAccountId": "219065",
"sendingUserId" : "219065",
"recipients" : [
"[email protected]"
]
},
"response": {
"totalAccepted": 0,
"totalRejected": 1,
"accepted": [],
"rejected": [
{ "address": "[email protected]" }
]
}
},
{
"name": "failureSendingAccountId",
"request": {
"sendingAccountId": "INVALID_ID",
"sendingUserId" : "INVALID_USER_ID",
"recipients" : [
"[email protected]"
]
},
"response": {
"message": "The sending account id does not match any records"
}
}
]
}
{
"apiEndpoint": "http://0.0.0.0:8090",
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment