Flowdock (Discontinued) website screenshot

Flowdock (Discontinued)

CA Flowdock was a team chat and shared team-inbox product originally founded as Flowdock in Helsinki / Tampere, Finland (Nodeta Oy spin-off, ~2010), acquired by CA Technologies in 2013, and operated under Broadcom after Broadcom's 2018 acquisition of CA. The hosted service and all public APIs (REST, Push, Streaming, SCIM) were discontinued on August 15, 2023. Broadcom's sunset notice directed customers to Microsoft Teams or Slack as successor products. This profile is an archival record assembled from the public api-docs repository and archived snapshots of the developer portal.

4 APIs 0 Features
Team ChatTeam InboxCollaborationReal-Time MessagingIntegrationsDiscontinued

APIs

Flowdock REST API

The primary developer surface for Flowdock. Read-write JSON over HTTPS for flows, messages, threads, private conversations, users, organizations, sources, invitations, and files...

Flowdock Push API (Deprecated)

Legacy write-only HTTP API for posting content into a Flow's Team Inbox or Chat using a per-flow API token (no user authentication). Deprecated by the vendor in favor of the RES...

Flowdock Streaming API

Long-lived HTTP connection to stream.flowdock.com delivering real-time flow events. Two content types: newline-delimited JSON (`application/json`, `\r` delimited) or HTML5 Serve...

Flowdock SCIM Provisioning API

Partial SCIM 1.x user provisioning API for CA Flowdock Enterprise customers with Single Sign-On configured. Bearer-token authenticated. Now offline.

Collections

Event Specifications

Flowdock Streaming API

Historical streaming surface for CA Flowdock. Long-lived HTTP connection that emitted real-time message events from one or more flows. Two content types were supported: a newlin...

ASYNCAPI

Semantic Vocabularies

Flowdock Context

34 classes · 0 properties

JSON-LD

API Governance Rules

Flowdock (Discontinued) API Rules

7 rules · 1 errors 5 warnings

SPECTRAL

JSON Structure

Flowdock Flow Structure

0 properties

JSON STRUCTURE

Flowdock Message Structure

0 properties

JSON STRUCTURE

Flowdock Organization Structure

0 properties

JSON STRUCTURE

Example Payloads

Flowdock Chat Push Request

3 fields

EXAMPLE

Flowdock Invitation Response

5 fields

EXAMPLE

Flowdock Message Event Stream

11 fields

EXAMPLE

Flowdock Scim User Response

1 fields

EXAMPLE

Resources

🌐
Portal
Portal
🔗
Documentation
Documentation
📰
Blog
Blog
👥
GitHub
GitHub
🔗
Twitter
Twitter
🔗
Facebook
Facebook
🔗
Broadcom (via CA Technologies acquisition)
ParentCompany
🔗
Flowdock end-of-life 2023-08-15
SunsetNotice
🔗
Vocabulary
Vocabulary
🔗
JSONLD
JSONLD
📦
Ruby gem (flowdock-api)
SDKs
📦
Node.js client (node-flowdock)
SDKs
📦
JavaScript text/tag parser (flowdock-text)
SDKs
📦
Ruby text/tag parser (flowdock-text-rb)
SDKs
📦
markdown-it Flowdock
SDKs
📦
Ruby OmniAuth strategy (omniauth-flowdock)
SDKs
📦
Hubot adapter for Flowdock
SDKs
📦
Clojure (clj-flowdock)
SDKs
📦
Erlang (eflowdock)
SDKs
📦
Go (wm/go-flowdock)
SDKs
📦
Go (njern/flowdock)
SDKs
📦
Haskell (flowdock)
SDKs
📦
Haskell (flowdock-api)
SDKs
📦
PHP (mremi/Flowdock)
SDKs
📦
PHP (flim/PHPFlow)
SDKs
📦
Python (python-flowdock)
SDKs
📦
Python (PyFlowdock)
SDKs
📦
R (flowdockr)
SDKs
📦
Perl (Net::Flowdock)
SDKs
📦
Perl (p5-Flowdock)
SDKs

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Flowdock SCIM Provisioning API
  version: '1.0'
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: SCIM
    type: folder
  items:
  - info:
      name: Verify SCIM Authorization
      type: http
    http:
      method: GET
      url: https://api.flowdock.com/scim/:uid
      params:
      - name: uid
        value: ''
        type: path
        description: SSO organization UID issued during SSO setup.
    docs: Verify SCIM Authorization
  - info:
      name: List SCIM Users
      type: http
    http:
      method: GET
      url: https://api.flowdock.com/scim/:uid/Users
      params:
      - name: uid
        value: ''
        type: path
        description: SSO organization UID issued during SSO setup.
    docs: List SCIM Users
  - info:
      name: Provision SCIM User
      type: http
    http:
      method: POST
      url: https://api.flowdock.com/scim/:uid/Users
      params:
      - name: uid
        value: ''
        type: path
        description: SSO organization UID issued during SSO setup.
      body:
        type: json
        data: '{}'
    docs: Provision SCIM User
  - info:
      name: Get SCIM User
      type: http
    http:
      method: GET
      url: https://api.flowdock.com/scim/:uid/Users/:id
      params:
      - name: uid
        value: ''
        type: path
        description: SSO organization UID issued during SSO setup.
      - name: id
        value: ''
        type: path
    docs: Get SCIM User
  - info:
      name: Update SCIM User
      type: http
    http:
      method: PUT
      url: https://api.flowdock.com/scim/:uid/Users/:id
      params:
      - name: uid
        value: ''
        type: path
        description: SSO organization UID issued during SSO setup.
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update SCIM User
  - info:
      name: Deactivate SCIM User
      type: http
    http:
      method: DELETE
      url: https://api.flowdock.com/scim/:uid/Users/:id
      params:
      - name: uid
        value: ''
        type: path
        description: SSO organization UID issued during SSO setup.
      - name: id
        value: ''
        type: path
    docs: Deactivate SCIM User
bundled: true