APIs.io Engineering Platform · Schema
Custom Device Posture Integration Config
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| access_client_id | string | This id will be passed in the `CF-Access-Client-ID` header when hitting the `api_url` |
| access_client_secret | string | This secret will be passed in the `CF-Access-Client-Secret` header when hitting the `api_url` |
| api_url | string | The Custom Device Posture Integration API URL. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/teams-devices_custom_s2s_config_request",
"title": "Custom Device Posture Integration Config",
"properties": {
"access_client_id": {
"description": "This id will be passed in the `CF-Access-Client-ID` header when hitting the `api_url`",
"example": "88bf3b6d86161464f6509f7219099e57.access",
"type": "string"
},
"access_client_secret": {
"description": "This secret will be passed in the `CF-Access-Client-Secret` header when hitting the `api_url`",
"example": "bdd31cbc4dec990953e39163fbbb194c93313ca9f0a6e420346af9d326b1d2a5",
"type": "string"
},
"api_url": {
"description": "The Custom Device Posture Integration API URL.",
"example": "https://example.custom-s2s.com",
"type": "string"
}
},
"required": [
"api_url",
"access_client_id",
"access_client_secret"
],
"type": "object"
}