List paused nodes on a case
curl --request GET \
--url https://core.us.api.frayme.io/cases/{caseId}/pending \
--header 'X-API-Key: <api-key>'import requests
url = "https://core.us.api.frayme.io/cases/{caseId}/pending"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://core.us.api.frayme.io/cases/{caseId}/pending', 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://core.us.api.frayme.io/cases/{caseId}/pending",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://core.us.api.frayme.io/cases/{caseId}/pending"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://core.us.api.frayme.io/cases/{caseId}/pending")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://core.us.api.frayme.io/cases/{caseId}/pending")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"pending": [
{
"nodeId": "node_sumsub",
"providerId": "sumsub",
"pendingHandle": "84147546-1b38-46d9-95ed-537d0dd4945e",
"expiresAt": "2026-05-19T15:32:04Z",
"availableActions": [
{
"id": "refresh_sdk_token",
"label": "Refresh SDK Token",
"resolvesAwait": false
},
{
"id": "regenerate_link",
"label": "Regenerate Verification Link",
"resolvesAwait": false
},
{
"id": "prefill_applicant_info",
"label": "Prefill Applicant Info",
"resolvesAwait": false
},
{
"id": "prefill_company_info",
"label": "Prefill Company Info",
"resolvesAwait": false
},
{
"id": "reset_level_step",
"label": "Reset Verification Steps",
"resolvesAwait": false
},
{
"id": "reset_applicant",
"label": "Reset Applicant",
"resolvesAwait": false
}
]
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Cases API
List paused nodes on a case
List the workflow nodes currently paused awaiting an external system,
each with an opaque pendingHandle and the actions you may invoke on
it. Requires the cases:read scope.
GET
/
cases
/
{caseId}
/
pending
List paused nodes on a case
curl --request GET \
--url https://core.us.api.frayme.io/cases/{caseId}/pending \
--header 'X-API-Key: <api-key>'import requests
url = "https://core.us.api.frayme.io/cases/{caseId}/pending"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://core.us.api.frayme.io/cases/{caseId}/pending', 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://core.us.api.frayme.io/cases/{caseId}/pending",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://core.us.api.frayme.io/cases/{caseId}/pending"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://core.us.api.frayme.io/cases/{caseId}/pending")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://core.us.api.frayme.io/cases/{caseId}/pending")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"pending": [
{
"nodeId": "node_sumsub",
"providerId": "sumsub",
"pendingHandle": "84147546-1b38-46d9-95ed-537d0dd4945e",
"expiresAt": "2026-05-19T15:32:04Z",
"availableActions": [
{
"id": "refresh_sdk_token",
"label": "Refresh SDK Token",
"resolvesAwait": false
},
{
"id": "regenerate_link",
"label": "Regenerate Verification Link",
"resolvesAwait": false
},
{
"id": "prefill_applicant_info",
"label": "Prefill Applicant Info",
"resolvesAwait": false
},
{
"id": "prefill_company_info",
"label": "Prefill Company Info",
"resolvesAwait": false
},
{
"id": "reset_level_step",
"label": "Reset Verification Steps",
"resolvesAwait": false
},
{
"id": "reset_applicant",
"label": "Reset Applicant",
"resolvesAwait": false
}
]
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}⌘I