POST
https://api.octopush.com/v1/public/subaccount/credit-transfer/tokenEncodage : UTF-8
Authentification
Vos identifiants « api-key » et « api-login » doivent être ajoutés dans les headers.
Vous pouvez également utiliser Basic Auth.
Définition
Pour transférer du crédit vers l’un de vos sous-comptes, vous devez d’abord obtenir un jeton. Celui-ci sera dédié au transfert vers le sous-compte indiqué.
Paramètres particuliers
Champ | Type | Description |
---|---|---|
email_to | string | Email du sous-compte auquel vous souhaitez transférer le crédit. |
Exemple Curl
Shell
x
9
1
curl -X POST \
2
'https://api.octopush.com/v1/public/subaccount/credit-transfer/token' \
3
-H 'Content-Type: application/json' \
4
-H 'api-login: ******@email.org' \
5
-H 'api-key: ************' \
6
-H 'cache-control: no-cache' \
7
-d '{
8
"email_to": "xxxxxxx@sub-accounts.com"
9
}'
Code à copier-coller
Shell
xxxxxxxxxx
1
1
1
curl -X POST 'https://api.octopush.com/v1/public/subaccount/credit-transfer/token' -H 'Content-Type: application/json' -H 'api-login: ******@email.org' -H 'api-key: ************' -H 'cache-control: no-cache' -d '{"email_to": "xxxxxxx@sub-accounts.com"}'
Retour Server en json
Succès : 201 CREATED
JSON
xxxxxxxxxx
1
3
1
{
2
"token": "**************************"
3
}