Documentation Index
Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
Use this file to discover all available pages before exploring further.
Server path: /microsoft-active-directory-applications | Type: Application | PCID required: Yes
microsoft_active_directory_applications_add_application_password
Add a client secret to an application
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
application_id | string | Yes | — | Application Id |
passwordCredential | object | No | — | Password Credential |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"application_id": {
"type": "string",
"description": "Application Id"
},
"passwordCredential": {
"type": "object",
"description": "Password Credential",
"properties": {
"displayName": {
"type": "string",
"description": "Friendly name for the secret"
},
"endDateTime": {
"type": "string",
"description": "Expiration timestamp (ISO 8601)"
}
}
}
},
"required": [
"PCID",
"application_id"
]
}
microsoft_active_directory_applications_create_application
Create a new application
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
description | string | No | — | The description value |
displayName | string | Yes | — | Display Name |
signInAudience | string | No | — | AzureADMyOrg | AzureADMultipleOrgs | AzureADandPersonalMicrosoftAccount | PersonalMicrosoftAccount |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"description": {
"type": "string",
"description": "The description value"
},
"displayName": {
"type": "string",
"description": "Display Name"
},
"signInAudience": {
"type": "string",
"description": "AzureADMyOrg | AzureADMultipleOrgs | AzureADandPersonalMicrosoftAccount | PersonalMicrosoftAccount"
}
},
"required": [
"PCID",
"displayName"
]
}
microsoft_active_directory_applications_delete_application
Delete an application
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
application_id | string | Yes | — | Application Id |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"application_id": {
"type": "string",
"description": "Application Id"
}
},
"required": [
"PCID",
"application_id"
]
}
microsoft_active_directory_applications_get_application
Get an application by ID
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
application_id | string | Yes | — | Application object ID (GUID) — not the appId |
$select | string | No | — | The $select value |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"application_id": {
"type": "string",
"description": "Application object ID (GUID) — not the appId"
},
"$select": {
"type": "string",
"description": "The $select value"
}
},
"required": [
"PCID",
"application_id"
]
}
microsoft_active_directory_applications_list_application_owners
List owners of an application
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
application_id | string | Yes | — | Application Id |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"application_id": {
"type": "string",
"description": "Application Id"
}
},
"required": [
"PCID",
"application_id"
]
}
microsoft_active_directory_applications_list_applications
List applications
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
$filter | string | No | — | The $filter value |
$select | string | No | — | The $select value |
$top | integer | No | — | The $top value |
$orderby | string | No | — | The $orderby value |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"$filter": {
"type": "string",
"description": "The $filter value"
},
"$select": {
"type": "string",
"description": "The $select value"
},
"$top": {
"type": "integer",
"description": "The $top value"
},
"$orderby": {
"type": "string",
"description": "The $orderby value"
}
},
"required": [
"PCID"
]
}
microsoft_active_directory_applications_remove_application_password
Remove a client secret from an application
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
application_id | string | Yes | — | Application Id |
keyId | string | Yes | — | GUID of the password credential to remove |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"application_id": {
"type": "string",
"description": "Application Id"
},
"keyId": {
"type": "string",
"description": "GUID of the password credential to remove"
}
},
"required": [
"PCID",
"application_id",
"keyId"
]
}
microsoft_active_directory_applications_update_application
Update an application
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
application_id | string | Yes | — | Application Id |
description | string | No | — | The description value |
displayName | string | No | — | Display Name |
signInAudience | string | No | — | Sign In Audience |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"application_id": {
"type": "string",
"description": "Application Id"
},
"description": {
"type": "string",
"description": "The description value"
},
"displayName": {
"type": "string",
"description": "Display Name"
},
"signInAudience": {
"type": "string",
"description": "Sign In Audience"
}
},
"required": [
"PCID",
"application_id"
]
}