Strivacity Personal Data API

The Personal Data API from Strivacity — 2 operation(s) for personal data.

Operations 2

GET /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/download Download account information #
GET /myaccount/api/v1/me/personalData Download account information #

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/strivacity-personal-data-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

strivacity-personal-data-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Strivacity Personal Data API
  version: v0.0.1
  description: 'Operations tagged Personal Data across 2 of this provider''s published API definitions: strivacity-admin-portal-openapi-original.json, strivacity-myaccount-portal-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://{tenant}
  variables:
    tenant:
      default: example.strivacity.com
      description: Your Strivacity tenant
tags:
- name: Personal Data
paths:
  /admin/api/v1/identityStores/{identityStoreName}/accounts/{accountId}/download:
    get:
      description: 'You can download the account information in HTML or JSON format by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | read:account_download |'
      operationId: getPersonalData
      parameters:
      - in: path
        name: identityStoreName
        required: true
        schema:
          type: string
      - in: path
        name: accountId
        required: true
        schema:
          type: string
      - in: query
        name: fileType
        required: true
        schema:
          pattern: html|json
          type: string
          enum:
          - html
          - json
      responses:
        '200':
          content:
            '*/*':
              schema:
                type: string
          description: OK
          headers:
            Content-Disposition:
              schema:
                type: string
                example: attachment; filename="{filename}"
              style: simple
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Invalid file type or file type is not present
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - read:account_download
      summary: Download account information
      tags:
      - Personal Data
    servers:
    - url: https://{tenant}
      variables:
        tenant:
          default: example.strivacity.com
          description: Your Strivacity tenant
  /myaccount/api/v1/me/personalData:
    get:
      description: 'You can download the account information of the authenticated account in HTML or JSON format by calling this endpoint.


        To use this endpoint, the "Allow customers to download their data" option must be turned on in the Self-service policy settings.'
      operationId: getPersonalData
      parameters:
      - in: query
        name: fileType
        required: true
        schema:
          pattern: html|json
          type: string
          enum:
          - html
          - json
      responses:
        '200':
          content:
            '*/*':
              schema:
                type: string
          description: OK
          headers:
            Content-Disposition:
              schema:
                type: string
                example: attachment; filename="{filename}"
              style: simple
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Invalid file type or file type is not present
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
      security:
      - securityScheme: []
      summary: Download account information
      tags:
      - Personal Data
    servers:
    - url: https://{tenant}
      variables:
        tenant:
          default: example.strivacity.com
          description: Your Strivacity tenant
components:
  schemas:
    ProblemJson:
      type: object
      properties:
        detail:
          type: string
        entityName:
          type: string
          description: The name of the entity within the error has occurred
        errorKey:
          type: string
          description: A unique identifier of the error
        fieldErrors:
          type: array
          description: Field constraint violation errors
          items:
            $ref: '#/components/schemas/FieldError'
        message:
          type: string
          description: A unique identifier in format of 'error.{errorKey}'
        params:
          type: array
          description: Further information related to the actual error
          items:
            type: object
            additionalProperties:
              type: object
        path:
          type: string
          description: Request URI
        status:
          type: integer
          description: Status code
          format: int32
        title:
          type: string
      description: Based on [RFC 7807](https://datatracker.ietf.org/doc/html/rfc7807)
    FieldError:
      type: object
      properties:
        field:
          type: string
        message:
          type: string
        objectName:
          type: string
  securitySchemes:
    securityScheme:
      scheme: bearer
      type: http
x-refined-from:
- strivacity-admin-portal-openapi-original.json
- strivacity-myaccount-portal-openapi-original.json
x-readme:
  explorer-enabled: true
  proxy-enabled: true