/shortcut-resources | Type: Application | PCID required: Yes
Tools
shortcut_resources_create_doc
Create Doc Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
content | string | Yes | — | The content for the new document. |
content_format | string | No | — | Format of the content being sent. Defaults to ‘html’. If ‘markdown’, content will be converted to HTML for storage. Storage is always HTML; this parameter just tells us what format you’re sending. |
title | string | Yes | — | The title for the new document. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"content": {
"type": "string",
"description": "The content for the new document."
},
"content_format": {
"type": "string",
"description": "Format of the content being sent. Defaults to 'html'. If 'markdown', content will be converted to HTML for storage. Storage is always HTML; this parameter just tells us what format you're sending.",
"enum": [
"markdown",
"html"
]
},
"title": {
"type": "string",
"description": "The title for the new document."
}
},
"required": [
"PCID",
"content",
"title"
]
}
shortcut_resources_create_entity_template
Create Entity Template Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
author_id | string | No | — | The id of the user creating this template. |
name | string | Yes | — | The name of the new entity template |
story_contents | object | Yes | — | A map of story attributes this template populates. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"author_id": {
"type": "string",
"description": "The id of the user creating this template."
},
"name": {
"type": "string",
"description": "The name of the new entity template"
},
"story_contents": {
"type": "object",
"description": "A map of story attributes this template populates.",
"properties": {
"description": {
"type": "string",
"description": "The description of the story."
},
"labels": {
"type": "array",
"items": {
"type": "object"
},
"description": "An array of labels to be populated by the template."
},
"story_type": {
"type": "string",
"description": "The type of story (feature, bug, chore)."
},
"custom_fields": {
"type": "array",
"items": {
"type": "object"
},
"description": "An array of maps specifying a CustomField ID and CustomFieldEnumValue ID that represents an assertion of some value for a CustomField."
},
"file_ids": {
"type": "array",
"items": {
"type": "integer",
"format": "int64"
},
"description": "An array of the attached file IDs to be populated."
},
"name": {
"type": "string",
"description": "The name of the story."
},
"epic_id": {
"type": "integer",
"description": "The ID of the epic the to be populated."
},
"external_links": {
"type": "array",
"items": {
"type": "string"
},
"description": "An array of external links to be populated."
},
"sub_tasks": {
"type": "array",
"items": {
"type": "object"
},
"description": "An array of maps specifying the sub-tasks to create and link to the story. Field only applicable when Sub-task feature is enabled."
},
"iteration_id": {
"type": "integer",
"description": "The ID of the iteration the to be populated."
},
"tasks": {
"type": "array",
"items": {
"type": "object"
},
"description": "An array of tasks to be populated by the template."
},
"group_id": {
"type": "string",
"description": "The ID of the group to be populated."
},
"workflow_state_id": {
"type": "integer",
"description": "The ID of the workflow state to be populated."
},
"follower_ids": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "An array of UUIDs for any Members listed as Followers."
},
"owner_ids": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "An array of UUIDs of the owners of this story."
},
"estimate": {
"type": "integer",
"description": "The numeric point estimate to be populated."
},
"project_id": {
"type": "integer",
"description": "The ID of the project the story belongs to."
},
"linked_file_ids": {
"type": "array",
"items": {
"type": "integer",
"format": "int64"
},
"description": "An array of the linked file IDs to be populated."
},
"deadline": {
"type": "string",
"description": "The due date of the story."
}
}
}
},
"required": [
"PCID",
"name",
"story_contents"
]
}
shortcut_resources_create_generic_integration
Create Generic Integration Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
secret | string | No | — | The secret value |
webhook_url | string | Yes | — | Webhook Url |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"secret": {
"type": "string",
"description": "The secret value"
},
"webhook_url": {
"type": "string",
"description": "Webhook Url"
}
},
"required": [
"PCID",
"webhook_url"
]
}
shortcut_resources_create_linked_file
Create Linked File Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
content_type | string | No | — | The content type of the image (e.g. txt/plain). |
description | string | No | — | The description of the file. |
name | string | Yes | — | The name of the file. |
size | integer | No | — | The filesize, if the integration provided it. |
story_id | integer | No | — | The ID of the linked story. |
thumbnail_url | string | No | — | The URL of the thumbnail, if the integration provided it. |
type | string | Yes | — | The integration type of the file (e.g. google, dropbox, box). |
uploader_id | string | No | — | The UUID of the member that uploaded the file. |
url | string | Yes | — | The URL of linked file. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"content_type": {
"type": "string",
"description": "The content type of the image (e.g. txt/plain)."
},
"description": {
"type": "string",
"description": "The description of the file."
},
"name": {
"type": "string",
"description": "The name of the file."
},
"size": {
"type": "integer",
"description": "The filesize, if the integration provided it."
},
"story_id": {
"type": "integer",
"description": "The ID of the linked story."
},
"thumbnail_url": {
"type": "string",
"description": "The URL of the thumbnail, if the integration provided it."
},
"type": {
"type": "string",
"description": "The integration type of the file (e.g. google, dropbox, box).",
"enum": [
"google",
"url",
"dropbox",
"box",
"onedrive"
]
},
"uploader_id": {
"type": "string",
"description": "The UUID of the member that uploaded the file."
},
"url": {
"type": "string",
"description": "The URL of linked file."
}
},
"required": [
"PCID",
"name",
"type",
"url"
]
}
shortcut_resources_delete_doc
Delete Doc Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
doc-public-id | string | Yes | — | The Doc’s public ID |
content_format | string | No | — | Format of the content to return. Defaults to ‘markdown’. If ‘html’, includes HTML content in response. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"doc-public-id": {
"type": "string",
"description": "The Doc's public ID"
},
"content_format": {
"type": "string",
"description": "Format of the content to return. Defaults to 'markdown'. If 'html', includes HTML content in response.",
"enum": [
"markdown",
"html"
]
}
},
"required": [
"PCID",
"doc-public-id"
]
}
shortcut_resources_delete_entity_template
Delete Entity Template Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
entity-template-public-id | string | Yes | — | The unique ID of the entity template. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"entity-template-public-id": {
"type": "string",
"description": "The unique ID of the entity template."
}
},
"required": [
"PCID",
"entity-template-public-id"
]
}
shortcut_resources_delete_file
Delete File Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
file-public-id | integer | Yes | — | The File’s unique ID. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"file-public-id": {
"type": "integer",
"description": "The File’s unique ID."
}
},
"required": [
"PCID",
"file-public-id"
]
}
shortcut_resources_delete_generic_integration
Delete Generic Integration Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
integration-public-id | integer | Yes | — | The integration-public-id value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"integration-public-id": {
"type": "integer",
"description": "The integration-public-id value"
}
},
"required": [
"PCID",
"integration-public-id"
]
}
shortcut_resources_delete_linked_file
Delete Linked File Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
linked-file-public-id | integer | Yes | — | The unique identifier of the linked file. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"linked-file-public-id": {
"type": "integer",
"description": "The unique identifier of the linked file."
}
},
"required": [
"PCID",
"linked-file-public-id"
]
}
shortcut_resources_disable_story_templates
Disable Story TemplatesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
shortcut_resources_enable_story_templates
Enable Story TemplatesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
shortcut_resources_get_current_member_info
Get Current Member InfoShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
shortcut_resources_get_doc
Get Doc Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
doc-public-id | string | Yes | — | The Doc’s public ID |
content_format | string | No | — | Format of the content to return. Defaults to ‘markdown’. If ‘html’, includes HTML content in response. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"doc-public-id": {
"type": "string",
"description": "The Doc's public ID"
},
"content_format": {
"type": "string",
"description": "Format of the content to return. Defaults to 'markdown'. If 'html', includes HTML content in response.",
"enum": [
"markdown",
"html"
]
}
},
"required": [
"PCID",
"doc-public-id"
]
}
shortcut_resources_get_entity_template
Get Entity Template Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
entity-template-public-id | string | Yes | — | The unique ID of the entity template. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"entity-template-public-id": {
"type": "string",
"description": "The unique ID of the entity template."
}
},
"required": [
"PCID",
"entity-template-public-id"
]
}
shortcut_resources_get_file
Get File Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
file-public-id | integer | Yes | — | The File’s unique ID. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"file-public-id": {
"type": "integer",
"description": "The File’s unique ID."
}
},
"required": [
"PCID",
"file-public-id"
]
}
shortcut_resources_get_generic_integration
Get Generic Integration Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
integration-public-id | integer | Yes | — | The integration-public-id value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"integration-public-id": {
"type": "integer",
"description": "The integration-public-id value"
}
},
"required": [
"PCID",
"integration-public-id"
]
}
shortcut_resources_get_linked_file
Get Linked File Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
linked-file-public-id | integer | Yes | — | The unique identifier of the linked file. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"linked-file-public-id": {
"type": "integer",
"description": "The unique identifier of the linked file."
}
},
"required": [
"PCID",
"linked-file-public-id"
]
}
shortcut_resources_get_member
Get Member Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
member-public-id | string | Yes | — | The Member’s unique ID. |
org-public-id | string | No | — | The unique ID of the Organization to limit the lookup to. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"member-public-id": {
"type": "string",
"description": "The Member's unique ID."
},
"org-public-id": {
"type": "string",
"description": "The unique ID of the Organization to limit the lookup to."
}
},
"required": [
"PCID",
"member-public-id"
]
}
shortcut_resources_get_repository
Get Repository Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
repo-public-id | integer | Yes | — | The unique ID of the Repository. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"repo-public-id": {
"type": "integer",
"description": "The unique ID of the Repository."
}
},
"required": [
"PCID",
"repo-public-id"
]
}
shortcut_resources_link_document_to_epic
Link Document to Epic Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
doc-public-id | string | Yes | — | The public ID of the Document. |
epic-public-id | integer | Yes | — | The public ID of the Epic. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"doc-public-id": {
"type": "string",
"description": "The public ID of the Document."
},
"epic-public-id": {
"type": "integer",
"description": "The public ID of the Epic."
}
},
"required": [
"PCID",
"doc-public-id",
"epic-public-id"
]
}
shortcut_resources_list_docs
List DocsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
shortcut_resources_list_document_epics
List Document Epics Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
doc-public-id | string | Yes | — | The public ID of the Document. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"doc-public-id": {
"type": "string",
"description": "The public ID of the Document."
}
},
"required": [
"PCID",
"doc-public-id"
]
}
shortcut_resources_list_entity_templates
List Entity TemplatesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
shortcut_resources_list_files
List FilesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
shortcut_resources_list_linked_files
List Linked FilesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
shortcut_resources_list_members
List Members Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
org-public-id | string | No | — | The unique ID of the Organization to limit the list to. |
disabled | boolean | No | — | Filter members by their disabled state. If true, return only disabled members. If false, return only enabled members. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"org-public-id": {
"type": "string",
"description": "The unique ID of the Organization to limit the list to."
},
"disabled": {
"type": "boolean",
"description": "Filter members by their disabled state. If true, return only disabled members. If false, return only enabled members."
}
},
"required": [
"PCID"
]
}
shortcut_resources_list_repositories
List RepositoriesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
shortcut_resources_unlink_document_from_epic
Unlink Document from Epic Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
doc-public-id | string | Yes | — | The public ID of the Document. |
epic-public-id | integer | Yes | — | The public ID of the Epic. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"doc-public-id": {
"type": "string",
"description": "The public ID of the Document."
},
"epic-public-id": {
"type": "integer",
"description": "The public ID of the Epic."
}
},
"required": [
"PCID",
"doc-public-id",
"epic-public-id"
]
}
shortcut_resources_update_doc
Update Doc Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
doc-public-id | string | Yes | — | The Doc’s public ID |
content | string | No | — | The new content for the document. |
content_format | string | No | — | Format of content. For input: specifies format of provided content (defaults to ‘html’). For output: controls response format - ‘markdown’ (default) or ‘html’ to include HTML content. |
title | string | No | — | The new title for the document |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"doc-public-id": {
"type": "string",
"description": "The Doc's public ID"
},
"content": {
"type": "string",
"description": "The new content for the document."
},
"content_format": {
"type": "string",
"description": "Format of content. For input: specifies format of provided content (defaults to 'html'). For output: controls response format - 'markdown' (default) or 'html' to include HTML content.",
"enum": [
"markdown",
"html"
]
},
"title": {
"type": "string",
"description": "The new title for the document"
}
},
"required": [
"PCID",
"doc-public-id"
]
}
shortcut_resources_update_entity_template
Update Entity Template Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
entity-template-public-id | string | Yes | — | The unique ID of the template to be updated. |
name | string | No | — | The updated template name. |
story_contents | object | No | — | Updated attributes for the template to populate. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"entity-template-public-id": {
"type": "string",
"description": "The unique ID of the template to be updated."
},
"name": {
"type": "string",
"description": "The updated template name."
},
"story_contents": {
"type": "object",
"description": "Updated attributes for the template to populate.",
"properties": {
"description": {
"type": "string",
"description": "The description of the story."
},
"labels": {
"type": "array",
"items": {
"type": "object"
},
"description": "An array of labels to be populated by the template."
},
"story_type": {
"type": "string",
"description": "The type of story (feature, bug, chore)."
},
"custom_fields": {
"type": "array",
"items": {
"type": "object"
},
"description": "An array of maps specifying a CustomField ID and CustomFieldEnumValue ID that represents an assertion of some value for a CustomField."
},
"file_ids": {
"type": "array",
"items": {
"type": "integer",
"format": "int64"
},
"description": "An array of the attached file IDs to be populated."
},
"name": {
"type": "string",
"description": "The name of the story."
},
"epic_id": {
"type": "integer",
"description": "The ID of the epic the to be populated."
},
"external_links": {
"type": "array",
"items": {
"type": "string"
},
"description": "An array of external links to be populated."
},
"sub_tasks": {
"type": "array",
"items": {
"type": "object"
},
"description": "An array of maps specifying the sub-tasks to create and link to the story. Field only applicable when Sub-task feature is enabled."
},
"iteration_id": {
"type": "integer",
"description": "The ID of the iteration the to be populated."
},
"tasks": {
"type": "array",
"items": {
"type": "object"
},
"description": "An array of tasks to be populated by the template."
},
"group_id": {
"type": "string",
"description": "The ID of the group to be populated."
},
"workflow_state_id": {
"type": "integer",
"description": "The ID of the workflow state to be populated."
},
"follower_ids": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "An array of UUIDs for any Members listed as Followers."
},
"owner_ids": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "An array of UUIDs of the owners of this story."
},
"estimate": {
"type": "integer",
"description": "The numeric point estimate to be populated."
},
"project_id": {
"type": "integer",
"description": "The ID of the project the story belongs to."
},
"linked_file_ids": {
"type": "array",
"items": {
"type": "integer",
"format": "int64"
},
"description": "An array of the linked file IDs to be populated."
},
"deadline": {
"type": "string",
"description": "The due date of the story."
}
}
}
},
"required": [
"PCID",
"entity-template-public-id"
]
}
shortcut_resources_update_file
Update File Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
file-public-id | integer | Yes | — | The unique ID assigned to the file in Shortcut. |
created_at | string | No | — | The time/date that the file was uploaded. |
description | string | No | — | The description of the file. |
external_id | string | No | — | An additional ID that you may wish to assign to the file. |
name | string | No | — | The name of the file. |
updated_at | string | No | — | The time/date that the file was last updated. |
uploader_id | string | No | — | The unique ID assigned to the Member who uploaded the file to Shortcut. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"file-public-id": {
"type": "integer",
"description": "The unique ID assigned to the file in Shortcut."
},
"created_at": {
"type": "string",
"description": "The time/date that the file was uploaded."
},
"description": {
"type": "string",
"description": "The description of the file."
},
"external_id": {
"type": "string",
"description": "An additional ID that you may wish to assign to the file."
},
"name": {
"type": "string",
"description": "The name of the file."
},
"updated_at": {
"type": "string",
"description": "The time/date that the file was last updated."
},
"uploader_id": {
"type": "string",
"description": "The unique ID assigned to the Member who uploaded the file to Shortcut."
}
},
"required": [
"PCID",
"file-public-id"
]
}
shortcut_resources_update_health
Update Health Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
health-public-id | string | Yes | — | The unique ID of the Health record. |
status | string | No | — | The health status of the Epic. |
text | string | No | — | The description of the Health status. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"health-public-id": {
"type": "string",
"description": "The unique ID of the Health record."
},
"status": {
"type": "string",
"description": "The health status of the Epic.",
"enum": [
"At Risk",
"On Track",
"Off Track",
"No Health"
]
},
"text": {
"type": "string",
"description": "The description of the Health status."
}
},
"required": [
"PCID",
"health-public-id"
]
}
shortcut_resources_update_linked_file
Update Linked File Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
linked-file-public-id | integer | Yes | — | The unique identifier of the linked file. |
description | string | No | — | The description of the file. |
name | string | No | — | The name of the file. |
size | integer | No | — | The filesize, if the integration provided it. |
story_id | integer | No | — | The ID of the linked story. |
thumbnail_url | string | No | — | The URL of the thumbnail, if the integration provided it. |
type | string | No | — | The integration type of the file (e.g. google, dropbox, box). |
uploader_id | string | No | — | The UUID of the member that uploaded the file. |
url | string | No | — | The URL of linked file. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"linked-file-public-id": {
"type": "integer",
"description": "The unique identifier of the linked file."
},
"description": {
"type": "string",
"description": "The description of the file."
},
"name": {
"type": "string",
"description": "The name of the file."
},
"size": {
"type": "integer",
"description": "The filesize, if the integration provided it."
},
"story_id": {
"type": "integer",
"description": "The ID of the linked story."
},
"thumbnail_url": {
"type": "string",
"description": "The URL of the thumbnail, if the integration provided it."
},
"type": {
"type": "string",
"description": "The integration type of the file (e.g. google, dropbox, box).",
"enum": [
"google",
"url",
"dropbox",
"box",
"onedrive"
]
},
"uploader_id": {
"type": "string",
"description": "The UUID of the member that uploaded the file."
},
"url": {
"type": "string",
"description": "The URL of linked file."
}
},
"required": [
"PCID",
"linked-file-public-id"
]
}
shortcut_resources_upload_files
Upload Files Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
file0 | string | Yes | — | A file upload. At least one is required. |
file1 | string | No | — | Optional additional files. |
file2 | string | No | — | Optional additional files. |
file3 | string | No | — | Optional additional files. |
story_id | integer | No | — | The story ID that these files will be associated with. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"file0": {
"type": "string",
"description": "A file upload. At least one is required."
},
"file1": {
"type": "string",
"description": "Optional additional files."
},
"file2": {
"type": "string",
"description": "Optional additional files."
},
"file3": {
"type": "string",
"description": "Optional additional files."
},
"story_id": {
"type": "integer",
"description": "The story ID that these files will be associated with."
}
},
"required": [
"PCID",
"file0"
]
}

