{ "opencollection": "1.0.0", "info": { "name": "Remote Benefits Benefit Offers OAuth API", "version": "2026-05-22" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "OAuth", "type": "folder" }, "items": [ { "info": { "name": "Authorize A Company", "type": "http" }, "http": { "method": "GET", "url": "https://gateway.remote.com/v1/oauth/authorize", "params": [ { "name": "client_id", "value": "", "type": "query" }, { "name": "response_type", "value": "", "type": "query" }, { "name": "redirect_uri", "value": "", "type": "query" }, { "name": "scope", "value": "", "type": "query" }, { "name": "state", "value": "", "type": "query" } ] }, "docs": "Redirect the company admin to this endpoint to grant access. Remote\nreturns an authorization code to the partner's `redirect_uri` that\ncan then be exchanged at `/oauth2/token` for a company-scoped\naccess token.\n" }, { "info": { "name": "Exchange OAuth 2.0 Token", "type": "http" }, "http": { "method": "POST", "url": "https://gateway.remote.com/v1/oauth2/token", "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" }, { "name": "client_id", "value": "" }, { "name": "client_secret", "value": "" }, { "name": "code", "value": "" }, { "name": "redirect_uri", "value": "" }, { "name": "refresh_token", "value": "" }, { "name": "assertion", "value": "" }, { "name": "scope", "value": "" } ] } }, "docs": "Exchange tokens for Authorization Code, Client Credentials,\nAssertion, and Refresh Token flows.\n" } ] } ], "bundled": true }