Get an access token
curl --request POST \
--url https://api.saturnshift.io/oauth/token \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data grant_type=client_credentials \
--data client_id=ss_client_live_xxx \
--data client_secret=ss_secret_live_xxx \
--data 'scope=transactions:read merchants:read'import requests
url = "https://api.saturnshift.io/oauth/token"
payload = {
"grant_type": "client_credentials",
"client_id": "ss_client_live_xxx",
"client_secret": "ss_secret_live_xxx",
"scope": "transactions:read merchants:read"
}
headers = {"Content-Type": "application/x-www-form-urlencoded"}
response = requests.post(url, data=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
body: new URLSearchParams({
grant_type: 'client_credentials',
client_id: 'ss_client_live_xxx',
client_secret: 'ss_secret_live_xxx',
scope: 'transactions:read merchants:read'
})
};
fetch('https://api.saturnshift.io/oauth/token', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.saturnshift.io/oauth/token",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "grant_type=client_credentials&client_id=ss_client_live_xxx&client_secret=ss_secret_live_xxx&scope=transactions%3Aread%20merchants%3Aread",
CURLOPT_HTTPHEADER => [
"Content-Type: application/x-www-form-urlencoded"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.saturnshift.io/oauth/token"
payload := strings.NewReader("grant_type=client_credentials&client_id=ss_client_live_xxx&client_secret=ss_secret_live_xxx&scope=transactions%3Aread%20merchants%3Aread")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.saturnshift.io/oauth/token")
.header("Content-Type", "application/x-www-form-urlencoded")
.body("grant_type=client_credentials&client_id=ss_client_live_xxx&client_secret=ss_secret_live_xxx&scope=transactions%3Aread%20merchants%3Aread")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.saturnshift.io/oauth/token")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/x-www-form-urlencoded'
request.body = "grant_type=client_credentials&client_id=ss_client_live_xxx&client_secret=ss_secret_live_xxx&scope=transactions%3Aread%20merchants%3Aread"
response = http.request(request)
puts response.read_body{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "Bearer",
"expires_in": 3600,
"scope": "transactions:read merchants:read"
}{
"error": "invalid_client",
"error_description": "<string>"
}{
"error": "invalid_client",
"error_description": "<string>"
}Authentication
Get an access token
Exchange your client credentials for a short-lived bearer token using the OAuth2 client_credentials grant. Send the credentials in the body (application/x-www-form-urlencoded) or as HTTP Basic auth. Tokens expire in 1 hour.
POST
/
oauth
/
token
Get an access token
curl --request POST \
--url https://api.saturnshift.io/oauth/token \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data grant_type=client_credentials \
--data client_id=ss_client_live_xxx \
--data client_secret=ss_secret_live_xxx \
--data 'scope=transactions:read merchants:read'import requests
url = "https://api.saturnshift.io/oauth/token"
payload = {
"grant_type": "client_credentials",
"client_id": "ss_client_live_xxx",
"client_secret": "ss_secret_live_xxx",
"scope": "transactions:read merchants:read"
}
headers = {"Content-Type": "application/x-www-form-urlencoded"}
response = requests.post(url, data=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
body: new URLSearchParams({
grant_type: 'client_credentials',
client_id: 'ss_client_live_xxx',
client_secret: 'ss_secret_live_xxx',
scope: 'transactions:read merchants:read'
})
};
fetch('https://api.saturnshift.io/oauth/token', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.saturnshift.io/oauth/token",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "grant_type=client_credentials&client_id=ss_client_live_xxx&client_secret=ss_secret_live_xxx&scope=transactions%3Aread%20merchants%3Aread",
CURLOPT_HTTPHEADER => [
"Content-Type: application/x-www-form-urlencoded"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.saturnshift.io/oauth/token"
payload := strings.NewReader("grant_type=client_credentials&client_id=ss_client_live_xxx&client_secret=ss_secret_live_xxx&scope=transactions%3Aread%20merchants%3Aread")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.saturnshift.io/oauth/token")
.header("Content-Type", "application/x-www-form-urlencoded")
.body("grant_type=client_credentials&client_id=ss_client_live_xxx&client_secret=ss_secret_live_xxx&scope=transactions%3Aread%20merchants%3Aread")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.saturnshift.io/oauth/token")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/x-www-form-urlencoded'
request.body = "grant_type=client_credentials&client_id=ss_client_live_xxx&client_secret=ss_secret_live_xxx&scope=transactions%3Aread%20merchants%3Aread"
response = http.request(request)
puts response.read_body{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "Bearer",
"expires_in": 3600,
"scope": "transactions:read merchants:read"
}{
"error": "invalid_client",
"error_description": "<string>"
}{
"error": "invalid_client",
"error_description": "<string>"
}Body
application/x-www-form-urlencoded
Available options:
client_credentials Example:
"client_credentials"
Example:
"ss_client_live_xxx"
Example:
"ss_secret_live_xxx"
Optional space-separated subset of your granted scopes.
Example:
"transactions:read merchants:read"