XSKY identity-platforms API
IdentityPlatformController Identity Platform Management
IdentityPlatformController Identity Platform Management
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/xsky-identity-platforms-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
description: XMS is the controller of distributed storage system
version: SDS_4.2.000.0.200302
title: XMS access-paths Identity Platforms API
contact: {}
license:
name: Commercial
servers:
- url: /v1
tags:
- name: identity-platforms
description: 'IdentityPlatformController Identity Platform Management
'
paths:
/identity-platforms/:
get:
tags:
- identity-platforms
description: List identity platforms
operationId: ListIdentityPlatforms
parameters:
- name: limit
in: query
description: paging param
required: false
x-exportParamName: Limit
schema:
type: integer
format: int64
- name: offset
in: query
description: paging param
required: false
x-exportParamName: Offset
schema:
type: integer
format: int64
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IdentityPlatformsResp'
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
post:
tags:
- identity-platforms
description: Create identity platform
operationId: CreateIdentityPlatform
responses:
201:
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/IdentityPlatformResp'
400:
description: BadRequest
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/IdentityPlatformCreateReq'
description: identity platform info
required: true
/identity-platforms/{identity_platform_id}:
get:
tags:
- identity-platforms
description: Get a identity platform
operationId: GetIdentityPlatform
parameters:
- name: identity_platform_id
in: path
description: identity platform id
required: true
x-exportParamName: IdentityPlatformId
schema:
type: integer
format: int64
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IdentityPlatformResp'
404:
description: NotFound
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
delete:
tags:
- identity-platforms
description: Delete identity platform
operationId: DeleteIdentityPlatform
parameters:
- name: identity_platform_id
in: path
description: identity platform id
required: true
x-exportParamName: IdentityPlatformId
schema:
type: integer
format: int64
responses:
204:
description: No Content
404:
description: NotFound
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
patch:
tags:
- identity-platforms
description: Update a identity platform
operationId: UpdateIdentityPlatform
parameters:
- name: identity_platform_id
in: path
description: identity platform id
required: true
x-exportParamName: IdentityPlatformId
schema:
type: integer
format: int64
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IdentityPlatformResp'
400:
description: BadRequest
404:
description: NotFound
500:
description: InternalServerError
security:
- tokenInHeader: []
- tokenInQuery: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/IdentityPlatformUpdateReq'
description: identity platform info
required: true
/identity-platforms/{identity_platform_id}:regenerate:
post:
tags:
- identity-platforms
description: regenereate a identity platform key
operationId: RegenerateIdentityKey
parameters:
- name: identity_platform_id
in: path
description: identity platform id
required: true
x-exportParamName: IdentityPlatformId
schema:
type: integer
format: int64
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/IdentityPlatformResp'
404:
description: NotFound
409:
description: Conflict
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
components:
schemas:
IdentityPlatformUpdateReq_Platform:
type: object
properties:
enabled:
type: boolean
name:
type: string
description: name of identity platform
url:
type: string
title: IdentityPlatformUpdateReq_Platform
example:
name: name
enabled: true
url: url
IdentityPlatformsResp:
type: object
properties:
identity_platforms:
type: array
description: identity platforms
items:
$ref: '#/components/schemas/IdentityPlatform'
title: IdentityPlatformsResp
example:
identity_platforms:
- failure_num: 0
success_num: 1
name: name
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 6
type: type
uuid: uuid
enabled: true
key: key
url: url
- failure_num: 0
success_num: 1
name: name
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 6
type: type
uuid: uuid
enabled: true
key: key
url: url
IdentityPlatform:
type: object
properties:
create:
type: string
format: date-time
description: time of creating identity platform
enabled:
type: boolean
description: enable the identity platform or not
failure_num:
type: integer
format: int64
description: num of failed authorization
id:
type: integer
format: int64
description: id of identity platform
key:
type: string
description: secret key of identity platform
name:
type: string
description: name of identity platform
success_num:
type: integer
format: int64
description: num of successful authorization
type:
type: string
description: type of identity platform
update:
type: string
format: date-time
description: time of updating identity platform
url:
type: string
description: url of identity platform
uuid:
type: string
title: IdentityPlatform
description: IdentityPlatform defines different platforms for auth
example:
failure_num: 0
success_num: 1
name: name
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 6
type: type
uuid: uuid
enabled: true
key: key
url: url
IdentityPlatformResp:
type: object
properties:
identity_platform:
description: identity platform
$ref: '#/components/schemas/IdentityPlatform'
title: IdentityPlatformResp
example:
identity_platform:
failure_num: 0
success_num: 1
name: name
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 6
type: type
uuid: uuid
enabled: true
key: key
url: url
IdentityPlatformUpdateReq:
type: object
properties:
identity_platform:
$ref: '#/components/schemas/IdentityPlatformUpdateReq_Platform'
title: IdentityPlatformUpdateReq
example:
identity_platform:
name: name
enabled: true
url: url
IdentityPlatformCreateReq:
type: object
properties:
identity_platform:
$ref: '#/components/schemas/IdentityPlatformCreateReq_Platform'
title: IdentityPlatformCreateReq
example:
identity_platform:
name: name
type: type
enabled: true
url: url
IdentityPlatformCreateReq_Platform:
type: object
properties:
enabled:
type: boolean
name:
type: string
description: name of identity platform
type:
type: string
description: type of identity platform
url:
type: string
title: IdentityPlatformCreateReq_Platform
example:
name: name
type: type
enabled: true
url: url
securitySchemes:
tokenInHeader:
description: auth by token
type: apiKey
name: Xms-Auth-Token
in: header
tokenInQuery:
description: auth by token
type: apiKey
name: token
in: query