Created
October 25, 2015 11:55
-
-
Save karlhorky/3cbbbf0b07a9f5ebde16 to your computer and use it in GitHub Desktop.
saasquatch-cli API Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
} | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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