Share Decision API
This is an API to make uploading decisions easier.
API
Sandbox API
https://auth.sandbox.conductiv.co/share
Production API
https://auth.developer.conductiv.co/share
Get Your API Keys
Log in to the platform and find your keys.
Header
Add a header to the request with the name "X-Keys" with a value of <Key ID>:<Key Secret>
Payload
You can pass decisions for one or more applications. Do this by passing an object like the following:
[
{
"id": "bb57f9be-5683-4818-bcd4-4a040af384b2",
"decision": "approve"
},
{
"id": "473eb6ee-50dd-4580-ba92-7de0bcae7111",
"decision": "decline"
},
]
ID
The ID property corresponds to the Request ID passed to us during the token call.
Decision
Decision should be one of approve
, decline
or pend
.
If you have any other questions, please reach out to implementation@conductiv.co for help.