Skip to main content
GET
/
api
/
v2
/
public
/
hosted-properties
curl -X GET "https://app.refold.ai/api/v2/public/hosted-properties" \
  -H "Authorization: Bearer YOUR_SESSION_TOKEN"
{
  "company": "Acme Inc.",
  "plan": "enterprise"
}
Read the JSON previously stashed by Create Connect URL for the current session token. The value is returned verbatim. Hosted Connect frontends use this to retrieve the context you passed when generating the URL.

Authentication

Authorization
string
required
The session token whose properties you want to read. Accepts session-token auth only.Format: Bearer YOUR_SESSION_TOKEN

Response

Returns the stashed JSON object exactly as it was supplied to POST /connect-url.
{
  "company": "Acme Inc.",
  "plan": "enterprise"
}
curl -X GET "https://app.refold.ai/api/v2/public/hosted-properties" \
  -H "Authorization: Bearer YOUR_SESSION_TOKEN"