1. Authentication
ROCKITPLAY API
  • ROCKIT Edge - Admin API
    • Installation / Upgrade
      • get versions
      • ping
      • submit test task
    • Admin Edge Organizations
      • Create Organization
      • Commit Export
      • Delete Organization
  • ROCKIT Edge - Backend API
    • Backend Edge Organizations
      • Create Organization
      • Delete Organization
    • Authentication
      • user login (org)
        POST
      • user login (user+pw)
        POST
      • Refresh
        POST
      • User logout
        POST
    • Account Management
      • get user details
      • list users
      • Modify user
      • delete users
      • Create User / Create Machine User
      • Create User / Create Machine User Copy
    • Deployments
      • Creating Deployments
      • Get Deployments
      • Get Deployment Details
      • Modify Deployment
      • Deleting Deployments
    • Apps
      • Creating Apps
      • Import native builds
      • App Details
      • List Apps
      • Patch App
      • Delete Apps
    • Triggers
      • Process Traces
      • Retry Task
    • Tasks
      • Listing Tasks
      • Task Details
      • Acknowledge Warning / Expire Task
    • Subscriptions
      • Subscribe
      • List Subscriptions
      • Unsubscribe
    • Roles
      • List Roles
      • Create Role
      • Patch Role
      • Role Details
      • Delete Roles
    • API Keys
      • Delete API Key
    • Commit
  • Changelog
    • Changelog
  • Schemas
    • Webhook Request Body
    • Import UrlSchema
  1. Authentication

Refresh

POST
https://Example-Server.com/be/v1/refresh
Last modified:2026-04-22 15:09:02
This endpoint allows users with a valid backend user refresh token (POST /be/v1/login) to refresh backend access token and backend refresh token.

Request

Header Params

Body Params application/json

Example
{}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://Example-Server.com/be/v1/refresh' \
--header 'Authorization: Bearer {{_edge_org_admin_refresh_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{}'

Responses

🟢200Success
application/json
Body

Example
{
    "status": "success",
    "session": {
        "access": {
            "expires": 1770301584,
            "token": "eyJhbGciOiJIUzI1N..."
        },
        "id": "e7b73...",
        "refresh": {
            "expires": 1770301584,
            "token": "eyJhbGciOiJIUzI1N..."
        }
    }
}
🟠400missing-param
🟠401token-expired
Modified at 2026-04-22 15:09:02
Previous
user login (user+pw)
Next
User logout
Built with