Oxylabs · Arazzo Workflow

Oxylabs Provision Sub-user

Version 1.0.0

Authenticate, create a residential proxy sub-user, and read back its record.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AI Web ScrapingBot Mitigation BypassCAPTCHA SolvingData ExtractionDatacenter ProxiesDatasetsE-Commerce DataHeadless BrowserISP ProxiesMobile ProxiesProxiesResidential ProxiesSERPScraper APIScrapingWeb DataWeb IntelligenceWeb UnblockerArazzoWorkflows

Provider

oxylabs

Workflows

provision-sub-user
Create a residential proxy sub-user and confirm it.
Logs in, creates a sub-user with the supplied name, password, and traffic limit, then reads the sub-user record back to confirm.
3 steps inputs: password, subUserId, sub_user_name, sub_user_password, traffic_limit, username outputs: subUser, userId
1
login
Exchange the account username and password for a bearer token and the numeric account user id.
2
createSubUser
Create the sub-user under the authenticated account with the supplied name, password, and traffic limit.
3
confirmSubUser
Read the sub-user record back to confirm the provisioning succeeded.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oxylabs Provision Sub-user
  summary: Authenticate, create a residential proxy sub-user, and read back its record.
  description: >-
    Provisions a new residential proxy sub-user end to end. The workflow logs
    in to the Residential Public API to obtain a bearer token and the account
    user id, creates a sub-user with a name, password, and traffic limit, and
    then reads the sub-user record back to confirm the provisioning succeeded.
    The create response does not echo the full record, so the read-back step
    resolves the authoritative sub-user state. Every step spells out its
    request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: loginApi
  url: ../openapi/oxylabs-login-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/oxylabs-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-sub-user
  summary: Create a residential proxy sub-user and confirm it.
  description: >-
    Logs in, creates a sub-user with the supplied name, password, and traffic
    limit, then reads the sub-user record back to confirm.
  inputs:
    type: object
    required:
    - username
    - password
    - subUserId
    - sub_user_name
    - sub_user_password
    properties:
      username:
        type: string
        description: Residential API account username for basic auth.
      password:
        type: string
        description: Residential API account password for basic auth.
      subUserId:
        type: integer
        description: Identifier used to read the sub-user back after creation.
      sub_user_name:
        type: string
        description: Name for the new sub-user.
      sub_user_password:
        type: string
        description: Password for the new sub-user.
      traffic_limit:
        type: integer
        description: Optional traffic limit for the new sub-user.
  steps:
  - stepId: login
    description: >-
      Exchange the account username and password for a bearer token and the
      numeric account user id.
    operationId: residentialLogin
    parameters:
    - name: Authorization
      in: header
      value: "Basic {$inputs.username}:{$inputs.password}"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      token: $response.body#/token
      userId: $response.body#/user_id
  - stepId: createSubUser
    description: >-
      Create the sub-user under the authenticated account with the supplied
      name, password, and traffic limit.
    operationId: createSubUser
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $steps.login.outputs.token"
    - name: userId
      in: path
      value: $steps.login.outputs.userId
    requestBody:
      contentType: application/json
      payload:
        sub_user_name: $inputs.sub_user_name
        password: $inputs.sub_user_password
        traffic_limit: $inputs.traffic_limit
        status: active
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      created: $response.body
  - stepId: confirmSubUser
    description: >-
      Read the sub-user record back to confirm the provisioning succeeded.
    operationId: getSubUser
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $steps.login.outputs.token"
    - name: userId
      in: path
      value: $steps.login.outputs.userId
    - name: subUserId
      in: path
      value: $inputs.subUserId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      subUser: $response.body
  outputs:
    userId: $steps.login.outputs.userId
    subUser: $steps.confirmSubUser.outputs.subUser

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/oxylabs-provision-sub-user-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.