action appcenter_sharedconnection_connections { label: "sharedconnection_Connections" description: "Gets all service connections of the service type for GDPR export." provider: appcenter method: GET path: "/v0.1/user/export/serviceConnections" encoding: json output: { type: "array" items: { type: "object" description: "SharedConnectionResponse" required: ["displayName", "serviceType"] properties: { credentialType: { type: "string" description: "the type of the credential" enum: ["credentials", "certificate", "key"] } displayName: { type: "string" description: "display name of shared connection" } serviceType: { type: "string" description: "service type of shared connection can be apple|gitlab|googleplay|jira" enum: ["apple", "jira", "googleplay", "gitlab"] } } } } }