WorkRamp Attributes API

The Attributes API from WorkRamp — 2 operation(s) for attributes.

Operations 3

GET /api/v1/attributes/user/:user_id List a User's Custom Attributes #
POST /api/v1/attributes/user/{UserID} Set Custom Attributes for a User #
DELETE /api/v1/attributes/user/{UserID} Delete a Custom Attribute from a User #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/workramp-attributes-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

workramp-attributes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Workramp Attributes API
  version: '1.0'
  description: 'Operations tagged Attributes across 2 of this provider''s published API definitions: workramp-api-settings-openapi.yml, workramp-json-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://app.workramp.com
security:
- sec0: []
tags:
- name: Attributes
paths:
  /api/v1/attributes/user/:user_id:
    get:
      summary: List a User's Custom Attributes
      description: List a user's custom attributes
      operationId: list-custom-user-attributes
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n  \t\"Location\": \"Building 1\",\n    \"Indirect manager\": \"Michael M.\"\n}"
              schema:
                type: object
                properties:
                  Location:
                    type: string
                    example: Building 1
                  Indirect manager:
                    type: string
                    example: Michael M.
      deprecated: false
      tags:
      - Attributes
    servers:
    - url: https://app.workramp.com
  /api/v1/attributes/user/{UserID}:
    post:
      summary: Set Custom Attributes for a User
      description: Adds or updates custom attributes for a user
      operationId: add-custom-user-attributes
      parameters:
      - name: UserID
        in: path
        description: ID to set attributes for
        schema:
          type: integer
          format: int32
        required: true
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                attributes:
                  type: string
                  description: Key `attributes` is required and is a dictionary of your attribute 'api names' → value
                  default: '{}'
                  format: json
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: 'true'
              schema:
                type: boolean
                example: true
                default: true
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Bad Date Format:
                  value: '{"type":"bad_request","message":"Date format not accepted, please try a different format."}'
                User not found:
                  value: '"user with id 12345 not found"'
                Nonexistent Attribute:
                  value: '{ "errors": "''example'' is not a custom attribute on ''user'' of id ''12345''"'
              schema:
                oneOf:
                - title: Bad Date Format
                  type: object
                  properties:
                    type:
                      type: string
                      example: bad_request
                    message:
                      type: string
                      example: Date format not accepted, please try a different format.
                - title: User not found
                  type: string
                  example: user with id 12345 not found
      deprecated: false
      tags:
      - Attributes
    delete:
      summary: Delete a Custom Attribute from a User
      description: Deletes one or more custom attribute values from a single user
      operationId: delete-custom-user-attributes
      parameters:
      - name: UserID
        in: path
        description: The user id to clear the attributes for
        schema:
          type: string
        required: true
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                attributes:
                  type: array
                  description: An array of custom attributes (their API names) to delete.
                  items:
                    type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: 'true'
              schema:
                type: boolean
                example: true
                default: true
      deprecated: false
      tags:
      - Attributes
    servers:
    - url: https://app.workramp.com
components:
  securitySchemes:
    sec0:
      type: apiKey
      name: Authorization
      in: header
      x-bearer-format: bearer
      x-default: ACCESS_TOKEN
x-refined-from:
- workramp-api-settings-openapi.yml
- workramp-json-api-openapi.yml
x-readme:
  headers: []
  explorer-enabled: false
  proxy-enabled: true
x-readme-fauxas: true