Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
To include the information for all
  • to an action

  • statenames of the workflow states in

the specified pages/specified spaces, stateNames [ ] is empty and will be limited to 100 items.

The REST API Models in the documentation define the document activity information retrieved in a request.

Permissions

Pages

For an API request for a list of one or more pages, the workflow visibility for each page is validated for the user running the report.

Excerpt
Table of Contents
minLevel2
maxLevel4
outlinefalse
typeflat
separatorpipe
printablefalse

Status
colourGreen
titleDATA CENTER
Status
colourPurple
titleDocument Activity REST API

Overview

Endpoints

The document Document Activity REST API documentation can retrieve workflow document activity information for entries from the following endpoints

Pages

This endpoint retrieves the document activity entries for a given list of page ids

  • http://<confluencehostname>/rest/cw/2/documentactivity/pages

Spaces

This endpoint retrieves the document activity entries for a given list of space keys

  • http://localhost:8090<confluencehostname>/rest/cw/2/documentactivity/spaces

Filtering

The requests can include filters , for example

scope to filter the pageids and spaceKeys

to retrieve workflow actions that match any or all of the filters. These are some of the filters available:

  • actors to filter by one or more users (by userid) who undertook an action in a document activity

  • participants to filter by one or more users (by userid) who were assigned , commented

Info
Info

In each space, the Workflow Activity and Drafts Visibility configuration option will determine the users who can retrieve document activity about the pages.

Spaces

For an API request for one or more spaces, we have to validate space administrator permission over each space for the user requesting the information through the API.

If a REST API
  • which the actions took place

  • fromdate indicates that the actions must have taken place after it

  • todate indicates that the actions must have taken place before it

  • types to filter by specific types (e.g. "state", "approval") or subtypes (e.g. "expired", “approvalAssigned“) of actions

Pagination

A query can be separated into multiple requests providing a limit and an offset in order to retrieve all the results in different "pages"

Info

Each request is limited by default to 100 items.

Permissions

Depending on which of the 2 endpoints is used, the following user permissions are required:

  • documentactivity/pages: Workflow Visibility over all the provided pages

  • documentactivity/spaces: Confluence Space Administrator permission over all the provided spaces

If the request contains a space/page over which the user making the request does not have enough permissions , then the response is shown as will be a bad request . The response will include with details about the spaces/pages over which the user does not have enough permissions. These should be removed from the request.

Document activity REST API documentation

The document activity REST API is provided as Open API (Swagger) Documentation.

Open api
docExpansionfull
filternone
supportedSubmitMethodsnone
showDownloadButtontrue
{
  "swagger" : "2.0",
  "info" : {
    "version" : "latest",
    "title" : "Document Activity Rest API (latest)"
  },
  "basePath" : "/rest/cw/2/",
  "tags" : [ {
    "name" : "documentactivity"
  } ],
  "schemes" : [ "https" ],
  "paths" : {
    "/documentactivity/pages" : {
      "post" : {
        "tags" : [ "documentactivity" ],
        "summary" : "Retrieves the workflow document activity information for a group of pages.",
        "description" : "",
        "operationId" : "getReportForPages",
        "consumes" : [ "application/json" ],
        "produces" : [ "application/json" ],
        "parameters" : [ {
          "in" : "body",
          "name" : "Document activity request",
          "required" : false,
          "schema" : {
            "$ref" : "#/definitions/DocumentActivityRequest"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Activities were queried successfully",
            "schema" : {
              "$ref" : "#/definitions/DocumentActivityResult"
            }
          },
          "400" : {
            "description" : "Validation error of the input body"
          },
          "401" : {
            "description" : "Client is not authenticated"
          },
          "403" : {
            "description" : "User has not workflow visibility permissions"
          },
          "500" : {
            "description" : "Exception when trying to retrieve data for DocumentActivity"
          }
        }
      }
    },
    "/documentactivity/spaces" : {
      "post" : {
        "tags" : [ "documentactivity" ],
        "summary" : "Retrieves the workflow document activity information for a a group of spaces.",
        "description" : "",
        "operationId" : "getReportForSpaces",
        "consumes" : [ "application/json" ],
        "produces" : [ "application/json" ],
        "parameters" : [ {
          "in" : "body",
          "name" : "Document activity request",
          "required" : false,
          "schema" : {
            "$ref" : "#/definitions/DocumentActivityRequest"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Activities were queried successfully",
            "schema" : {
              "$ref" : "#/definitions/DocumentActivityResult"
            }
          },
          "400" : {
            "description" : "Validation error of the input body"
          },
          "401" : {
            "description" : "Client is not authenticated"
          },
          "403" : {
            "description" : "User has not workflow visibility permissions"
          },
          "500" : {
            "description" : "Exception when trying to retrieve data for DocumentActivity"
          }
        }
      }
    }
  },
  "definitions" : {
    "Action" : {
      "type" : "object",
      "properties" : {
        "actionDetails" : {
          "type" : "array",
          "description" : "The extra information and details for the action",
          "items" : {
            "$ref" : "#/definitions/ActionDetail"
          }
        },
        "actors" : {
          "type" : "array",
          "description" : "The list of users that have performed the action, represented by Actors",
          "items" : {
            "$ref" : "#/definitions/Actor"
          }
        },
        "actionType" : {
          "description" : "The type of the action",
          "$ref" : "#/definitions/ActionType"
        }
      },
      "description" : "The Action that was performed on the document"
    },
    "ActionDetail" : {
      "type" : "object",
      "properties" : {
        "value" : {
          "type" : "string",
          "example" : "123647",
          "description" : "The value of the detail type"
        },
        "type" : {
          "type" : "string",
          "example" : "assigneeTimeToApprove",
          "description" : "The type of this detail record. It could be one of the following: stateName, stateId, stateComment, expiryDate,\n final, sourceStateName, approvalId, approvalName, approvalComment, approvalRole, approvalUserUnassigned,\n approvalUserAssigned, approvalSignatureMode, approvalSignatureType, taskName, taskComment, taskDescription,\n taskUserAssigned, taskUserUnassigned, taskDueDate, stateTimeLapsed, timeLapsedForApprove, approvers, requiredApprovers, assigneeTimeToApprove."
        },
        "participants" : {
          "type" : "array",
          "description" : "The participant users of this detail record. Represented by Actors.",
          "items" : {
            "$ref" : "#/definitions/Actor"
          }
        }
      },
      "description" : "Extra info and details for the action"
    },
    "ActionType" : {
      "type" : "object",
      "properties" : {
        "type" : {
          "type" : "string",
          "example" : "task",
          "description" : "Type of the action. It could be one of the following: approval, state, readack, task"
        },
        "subtype" : {
          "type" : "string",
          "example" : "taskCompletion",
          "description" : "Subtype of the action, it is related to the type of the action. it could be one of the following: override, init, transition, expired, expiryUpdate, expiryRemoved, \n readackCompleted, approvalUnassigned, approvalAssigned, approvalRejected, approvalApproved,\n taskUnassignment, taskAssignment, taskCreation, taskUpdate, taskDeletion, taskCompletion, taskDueDate,\n taskDueDateRemoved, taskDueDateExpired"
        }
      },
      "description" : "Type of action performed"
    },
    "Activity" : {
      "type" : "object",
      "properties" : {
        "target" : {
          "description" : "Page or blogpost subjected to an activity",
          "$ref" : "#/definitions/Target"
        },
        "action" : {
          "description" : "The Action that was performed on the document",
          "$ref" : "#/definitions/Action"
        },
        "moment" : {
          "type" : "integer",
          "format" : "int64",
          "example" : 123846,
          "description" : "The instant when the activity took place expressed in epoch millis"
        }
      },
      "description" : "This is the specification of the activity that was performed on the document."
    },
    "Actor" : {
      "type" : "object",
      "properties" : {
        "name" : {
          "type" : "string",
          "example" : "John",
          "description" : "The user's name"
        },
        "id" : {
          "type" : "string",
          "example" : "8aa7c63adfie24017bc8fdba710000",
          "description" : "The user id"
        },
        "displayName" : {
          "type" : "string",
          "example" : "John Snow",
          "description" : "The user's full name"
        },
        "profilePicPath" : {
          "type" : "string",
          "example" : "/confluence/images/icons/profilepics/default.svg",
          "description" : "The path of the profile picture"
        }
      },
      "description" : "This is the specification of the user involved in the action."
    },
    "DocumentActivityActionTypesFilter" : {
      "type" : "object",
      "properties" : {
        "type" : {
          "type" : "string",
          "example" : "task",
          "description" : "The type of action. Can be one of the following: approval, state, readack or task."
        },
        "subtypes" : {
          "type" : "array",
          "example" : "[\"taskDueDateExpired\"]",
          "description" : "Comma-separated list of subtypes of the action. If no subtype is provided, then all the events of the given type will be retrieved. Can be one of the following: for \"state\" type events: override, init,\n transition, expired, expiryUpdate or expiryRemoved. For \"readack\" type events: readackCompleted. For \"approval\" type events: approvalUnassigned, approvalAssigned,\n approvalRejected or approvalApproved. For \"task\" type events: taskUnassignment, taskAssignment, taskCreation, taskUpdate, taskDeletion,\n taskCompletion, taskDueDate, taskDueDateRemoved or taskDueDateExpired.",
          "items" : {
            "type" : "string"
          }
        }
      },
      "description" : "Object to contain a selection of type / subtypes to be filtered in a document activity query"
    },
    "DocumentActivityQueryFilter" : {
      "type" : "object",
      "properties" : {
        "fromDate" : {
          "type" : "integer",
          "format" : "int64",
          "example" : 12345323,
          "description" : "Limits the value of the activity moment to be greater or equals this value expressed in epoch millis"
        },
        "toDate" : {
          "type" : "integer",
          "format" : "int64",
          "example" : 12345323,
          "description" : "Limits the value of the activity moment to be lesser or equals this value expressed in epoch millis"
        },
        "actors" : {
          "type" : "array",
          "example" : "[\"8aa7c63adfie24017bc8fdba710000\"]",
          "description" : "Limits the actor of the activity to be one of these values, represented by user ids.",
          "items" : {
            "type" : "string"
          }
        },
        "participants" : {
          "type" : "array",
          "example" : "[\"8aa7c63adfie24017bc8fdba710000\"]",
          "description" : "Limits the participant of the activity to be one of these values, represented by user ids.",
          "items" : {
            "type" : "string"
          }
        },
        "types" : {
          "type" : "array",
          "description" : "List of Activity action types (STATE, APPROVAL, TASK and READ_CONFIRMATION) and its list of subtypes",
          "items" : {
            "$ref" : "#/definitions/DocumentActivityActionTypesFilter"
          }
        },
        "stateNames" : {
          "type" : "array",
          "example" : "[\"In Progress\", \"Approved\"]",
          "description" : "list of state names in which the actions took place",
          "items" : {
            "type" : "string"
          }
        },
        "scope" : {
          "description" : "Object with the target page/s id/s or space/s key/s to search activities for",
          "$ref" : "#/definitions/DocumentActivityQueryScope"
        }
      },
      "description" : "Fields to be used for filtering results."
    },
    "DocumentActivityQueryScope" : {
      "type" : "object",
      "properties" : {
        "pageIds" : {
          "type" : "array",
          "example" : "[\"134325\", \"24362345\", \"2345643\"]",
          "description" : "List with the page Ids",
          "items" : {
            "type" : "integer",
            "format" : "int64"
          }
        },
        "spaceKeys" : {
          "type" : "array",
          "example" : "[\"ADC\", \"SWP\", \"COM\"]",
          "description" : "List with the space keys",
          "items" : {
            "type" : "string"
          }
        }
      },
      "description" : "Object with the target page/s id/s or space/s key/s to search activities for. It should refer only to one of them depending on which endpoint is been called.If the endpoint called is the page's one, only the pageIds should be provided, and vice-versa."
    },
    "DocumentActivityRequest" : {
      "type" : "object",
      "properties" : {
        "sorting" : {
          "type" : "string",
          "example" : "desc",
          "description" : "The order for the sorting of activities, ascending or descending on the moment they occurred",
          "enum" : [ "asc", "desc" ]
        },
        "filters" : {
          "description" : "Fields to be used for filtering results.",
          "$ref" : "#/definitions/DocumentActivityQueryFilter"
        },
        "offset" : {
          "type" : "integer",
          "format" : "int32",
          "example" : 0,
          "description" : "Offset used to paginate results within a certain query."
        },
        "limit" : {
          "type" : "integer",
          "format" : "int32",
          "example" : 100,
          "description" : "Limits the maximum amount of activities retrieved."
        }
      },
      "description" : "This is the specification of the requested data."
    },
    "DocumentActivityResult" : {
      "type" : "object",
      "properties" : {
        "activities" : {
          "type" : "array",
          "description" : "The list of activities returned by the query",
          "items" : {
            "$ref" : "#/definitions/Activity"
          }
        }
      },
      "description" : "This is the specification of the data regarding the document activity. The information will refer to pages or spaces depending on the endpoint used to retrieve it."
    },
    "Target" : {
      "type" : "object",
      "properties" : {
        "attachmentList" : {
          "type" : "array",
          "description" : "The list of attachments the page or blogpost has",
          "items" : {
            "$ref" : "#/definitions/TargetAttachment"
          }
        },
        "targetVersionId" : {
          "type" : "integer",
          "format" : "int64",
          "example" : 54625,
          "description" : "Id of the version of the target page or blogpost where the action took place"
        },
        "targetId" : {
          "type" : "integer",
          "format" : "int64",
          "example" : 54523,
          "description" : "The id of the target page or blogpost"
        },
        "spaceKey" : {
          "type" : "string",
          "example" : "ASD",
          "description" : "The spacekey where the activity took place"
        },
        "targetVersion" : {
          "type" : "integer",
          "format" : "int32",
          "example" : 1,
          "description" : "The version of the target page or blogpost"
        }
      },
      "description" : "Page or blogpost subjected to an activity"
    },
    "TargetAttachment" : {
      "type" : "object",
      "properties" : {
        "targetAttachmentId" : {
          "type" : "integer",
          "format" : "int64",
          "example" : 237563,
          "description" : "The id of the attachment"
        },
        "targetAttachmentVersion" : {
          "type" : "integer",
          "format" : "int32",
          "example" : 3,
          "description" : "The version of the attachment"
        }
      },
      "description" : "The representation of the attachments affected by a document action on a page / blogpost"
    }
  }
}
Appanvil karma designer
summary Comala Document ManagementData Center Documentation Document Activity Upgrade PRODUCTSAppfire Comala Document Management SolutionsConfluence Approvalsand PublishingComala Document ManagementComala Document ControlComala Document ApprovalComala PublishingComala Share ItComala Read ConfirmationsConfluence VisualizationComala Boards for ConfluenceComala MetadataComala Lists Jira EnhancementsComala Canvas for Jira SOLUTIONSAppfire SolutionsDocument ManagementAgileDeveloper ToolsBusiness and IntelligenceIT Service ManagementProject Portfolio ManagementPublishingTime TrackingWorkflow and AutomationCONTACTGENERAL INFORMATIONinfo@comalatech.comSALESorders@comalatech.com SUPPORTContact FormResources - Appfire HubStatus PageAPPFIRE COMALA CANADA2025 Willingdon AvenueSuite 900, Burnaby, BCCanada, V5C 0J31-844-266-2521APPFIRE COMALA SPAINEdificio SotaGran Vía Don Diego López de Haro 4548011 Bilbao, Spain ABOUTAbout AppfireAppfire NewsroomAppfire BlogAppfire PeopleOur CommunityNewsletterPartnersJobs Talk to our teams PRIVACY SECURITY GDPR EULA
page{"id":"hziyX86liTF54vaulBc0X","name":"page","children":[{"id":"RkeokcIOTHd8Wp1AeuhWO","params":{"background":"#F1F3F5","padding":0,"gap":10},"children":[{"id":"7jb9FujWDxoKBMDyGPhOa","name":"row","children":[{"id":"CpE_07MaaHjDlkDzaEhBv","name":"column","children":[{"name":"divider","params":{"templateId":"solid long","color":"#A5A5A5","alignment":"start","fontSize":18,"fontColor":"#000000","height":1,"borderStyle":"solid"},"children":[],"id":"8nH1TAcA1H85K6HqytQqf"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"AsSYcCW-PIWeI60fBEEMW","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"51n0har5O1roHeNEnjwFZ","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"SXS3mfk03avfsk82rgMZ4","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"iKeyhB3SdLYL3kJjCDm6i","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"lFbwFrordwiW-WlLEwhxE","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}}],"params":{"layout":[1],"gap":10,"minHeight":50,"padding":10,"borderRadius":0}},{"id":"IaVwGiOFIw7TNll4snubk","name":"row","children":[{"id":"mN1Bjfvifc-C7R-999Vs2","name":"column","children":[{"name":"image","params":{"alignment":"center","position":"center center","borderRadius":{"all":5,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att14269153662att14329446652","target":"_blank","type":"attachment"},"width":115,"height":112},"children":[],"id":"9uzXk2tPyC8DHeoXd8PGX"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"","color":"#000000"},{"type":"link","link":{"value":"https://docs.comalatech.com/page/CDMLDC","target":"_blank","type":"link"},"children":[{"text":"Comala Document Management","letterSpacing":-1,"lineHeight":"unset","fontFamily":"unset","fontSize":18,"color":"#000000"}]},{"text":"","color":"#000000"}],"align":"center"},{"type":"paragraph","align":"center","children":[{"text":"","color":"#000000"},{"type":"link","link":{"value":"https://docs.comalatech.com/page/CDMLDC","target":"_blank","type":"link"},"children":[{"letterSpacing":-1,"lineHeight":"unset","fontFamily":"unset","text":"Data Center","fontSize":18,"color":"#000000"}]},{"text":"","underline":true,"color":"#000000"}]}]}]},"children":[],"id":"vH_nVWuQdgE9RPx8n1-YN"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"Bsxvp7zDxi7hOyYF5eXf0","name":"column","children":[{"name":"button","params":{"templateId":"regular outline","label":"Documentation","size":"large","shape":"circular","alignment":"center","states":{"idle":{"colors":{"outline":"#19270E","label":"#F1F3F5","background":{"light":"#97D572#A87DFF"}}},"hover":{"colors":{}}},"link":{"value":"https://docs.comalatech.com/space/CDML/14269448291","target":"_blank","type":"link"}},"children":[],"id":"fKW8aqG8Y7_qhen6zZ07x"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"7E6w-e58gWV1EBo0Orsdm","name":"column","children":[{"name":"button","params":{"templateId":"regular outline","label":"Document Activity Upgrade","size":"large","shape":"circular","alignment":"center","states":{"idle":{"colors":{"outline":"#1B2611","label":"#F1F3F5","background":{"#A2D27Dlight":"#A87DFF"}}},"hover":{"colors":{}}},"link":{"value":"https://docs.comalatech.com/space/CDML/14046560336/Document+Activity+Upgrade","target":"_blank","type":"link"}},"children":[],"id":"NfbhselfSxDkVTJV-byFf"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"center"}},{"id":"uGvUfrZqMPxia1iFgRcBO","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"6EA7tj0imnJp6iHk4ZQS9","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"BvXkz8TbkGwK0-eARCxVe","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,1,1],"gap":40,"minHeight":200,"padding":10,"borderRadius":0}},{"id":"TgSVdkd3nLVzumSkLsgb1","name":"row","children":[{"id":"q4ggwcLsuPDph3UeRNeUY","name":"column","children":[{"name":"divider","params":{"templateId":"solid long","color":"#A5A5A5","alignment":"start","fontSize":24,"fontColor":"#000000","height":1,"borderStyle":"solid"},"children":[],"id":"_fHTew-aPvnAbQjleJIkt"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"8gWEIA6yQMesvGJopzRu4","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"AC5IQ1qShjXYAgptnb5xX","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"IDiSWfHwERgfKhFllufk4","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"J0JrSJAEIf_T6t1j6sVjs","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"0u9TkKadvV0RxlHmPP2le","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1],"gap":10,"minHeight":50,"padding":10,"borderRadius":0,"size":"full"}}],"name":"section"},{"id":"XAdrm900XeUVICsoLGS6B","params":{"background":"#F1F3F5","padding":0,"gap":10},"children":[{"id":"q0zpWbXWJgGvecxzgtCze","name":"row","children":[{"id":"YUixB7aZ1cBWmtl7gLggF","name":"column","children":[{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"PRODUCTS","fontSize":18,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"text":"","underline":true,"fontSize":14,"fontFamily":"Roboto"},{"type":"link","link":{"value":"https://appfire.com/solutions/products/?_sfm_category=dm","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Appfire Comala Document Management Solutions","color":"#0091FF","fontSize":14,"fontFamily":"Roboto"}]},{"letterSpacing":0,"color":"#3a3a3a","text":"","underline":true,"fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"","underline":true,"fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"","underline":true,"fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"Confluence Approvals","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"and Publishing","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"","underline":true,"fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://marketplace.atlassian.com/apps/142/comala-document-management?hosting=datacenter&tab=overview","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Comala Document Management","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://marketplace.atlassian.com/apps/1215729/comala-document-control?hosting=datacenter&tab=overview","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Comala Document Control","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://marketplace.atlassian.com/apps/1219822/comala-document-approval?hosting=datacenter&tab=overview","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Comala Document Approval","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://marketplace.atlassian.com/apps/143/comala-publishing?hosting=datacenter&tab=overview","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Comala Publishing","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://marketplace.atlassian.com/apps/1212189/comala-share-it?hosting=datacenter&tab=overview","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Comala Share It","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://marketplace.atlassian.com/apps/1222969/comala-read-confirmations?hosting=cloud&tab=overview","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Comala Read Confirmation","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"},{"letterSpacing":0,"fontSize":14,"fontFamily":"Roboto","color":"#0091FF","text":"s"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","underline":true,"fontSize":14,"fontFamily":"Roboto","text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"","underline":true,"fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"Confluence Visualization","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"","underline":true,"fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://marketplace.atlassian.com/apps/1177667/comala-boards-for-confluence?hosting=datacenter&tab=overview","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Comala Boards for Confluence","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://marketplace.atlassian.com/apps/5295/comala-metadata?hosting=datacenter&tab=overview","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Comala Metadata","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://marketplace.atlassian.com/apps/154/comala-lists?hosting=datacenter&tab=overview","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Comala Lists","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","underline":true,"fontSize":14,"fontFamily":"Roboto","text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"","underline":true,"fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":" Jira Enhancements","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"","underline":true,"fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://marketplace.atlassian.com/apps/1211683/comala-canvas-for-jira?hosting=datacenter&tab=overview","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"fontSize":14,"fontFamily":"Roboto","text":"Comala Canvas for Jira","color":"#0091FF"}]},{"text":""}]}]}]},"children":[],"id":"aXg1uBUz83hJuam7aWhjn"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"D4qwjpFl8JJPhhks4QUPe","name":"column","children":[{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"SOLUTIONS","letterSpacing":0,"color":"#3a3a3a","fontSize":18,"fontFamily":"Roboto"}],"align":"center"},{"type":"paragraph","align":"center","children":[{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/solutions/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Appfire Solutions","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"text":"","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/solutions/products/?_sfm_category=dm","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Document Management","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/solutions/products/?_sfm_category=ag","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Agile","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/solutions/products/?_sfm_category=dt","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Developer Tools","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/solutions/products/?_sfm_category=bi","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Business and Intelligence","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/solutions/jira-it-service-management-apps/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"IT Service Management","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/solutions/products/?_sfm_category=pmm","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Project Portfolio Management","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/solutions/products/?_sfm_category=pb","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Publishing","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/solutions/products/?_sfm_category=tt","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Time Tracking","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/solutions/workflow-automation-solutions/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Workflow and Automation","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontSize":18,"text":"","fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontSize":18,"text":"","fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontSize":18,"text":"CONTACT","fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontSize":18,"text":"","fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"GENERAL INFORMATION","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"info@comalatech.com","target":"_blank","type":"mail"},"children":[{"letterSpacing":0,"text":"info@comalatech.com","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontSize":18,"text":"","fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"SALES","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"orders@comalatech.com","target":"_blank","type":"mail"},"children":[{"letterSpacing":0,"text":"orders@comalatech.com","fontSize":14,"fontFamily":"Roboto","color":"#0091FF","underline":true}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""}]}]}]},"children":[],"id":"YCtIf47a96fHboFmF0o2c"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"8aj-vOJ4Qtq5h2uvhwBbO","name":"column","children":[{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"SUPPORT","letterSpacing":0,"color":"#3a3a3a","fontSize":18,"fontFamily":"Roboto"}],"align":"center"},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"","fontSize":14}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://comalatech.jira.com/servicedesk/customer/portal/1","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"fontSize":14,"text":"Contact Form","fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://hub.appfire.com/search-results/?_sf_s=Comala","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Resources - Appfire Hub","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://comalatech.statuspage.io/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Status Page","fontSize":14,"fontFamily":"Roboto","color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontSize":18,"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontSize":18,"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontSize":18,"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"text":"APPFIRE COMALA CANADA","fontFamily":"Roboto","fontSize":14,"fontWeight":700,"color":"#1D3865"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontFamily":"Roboto","fontSize":14,"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"2025 Willingdon Avenue","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"Suite 900, Burnaby, BC","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"Canada, V5C 0J3","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"1-844-266-2521","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontSize":18,"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"text":"APPFIRE COMALA SPAIN","fontFamily":"Roboto","fontSize":14,"fontWeight":700,"color":"#1D3865"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontFamily":"Roboto","fontSize":14,"text":""}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"Edificio Sota","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"Gran Vía Don Diego López de Haro 45","fontSize":14,"fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","text":"48011 Bilbao, Spain","fontSize":14,"fontFamily":"Roboto"}]}]}]},"children":[],"id":"fjiiPWN7DHaJPsn_mQiZs"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"Hhe24FuI2yMzV5s_do7ZN","name":"column","children":[{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":"ABOUT","letterSpacing":0,"color":"#3a3a3a","fontSize":18,"fontFamily":"Roboto"}],"align":"center"},{"type":"paragraph","align":"center","children":[{"letterSpacing":0,"color":"#3a3a3a","fontSize":18,"text":"","fontFamily":"Roboto"}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/about/-us","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"About Appfire","fontFamily":"Roboto","fontSize":14,"color":"#0091FF","underline":true}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/about/newsroom/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Appfire Newsroom","fontFamily":"Roboto","fontSize":14,"color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/resources/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Appfire Blog","fontFamily":"Roboto","fontSize":14,"color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/about/team/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Appfire People","fontFamily":"Roboto","fontSize":14,"color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://hub.appfire.com/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Our Community","fontFamily":"Roboto","fontSize":14,"color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/subscribe/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Newsletter","fontFamily":"Roboto","fontSize":14,"color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/find-a-partner/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Partners","fontFamily":"Roboto","fontSize":14,"color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/join/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Jobs","fontFamily":"Roboto","fontSize":14,"color":"#0091FF"}]},{"text":""}]}]}]},"children":[],"id":"feXrgFgadzyxhDzdoHTEC"},{"name":"image","params":{"templateId":"square","alignment":"center","width":56,"height":56,"position":"center center","borderRadius":{"all":0,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att14269481090","target":"_blank","type":"attachment"}},"children":[],"id":"oGsXX_JqzLyP6z_jkqB2R"},{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/contact/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"Talk to our teams","fontFamily":"Roboto","fontSize":14,"color":"#0091FF"}]},{"text":""}]},{"type":"paragraph","align":"center","children":[{"text":""}]}]}]},"children":[],"id":"bZbmT3yS3VvzDpqDd0YIc"},{"name":"image","params":{"templateId":"square","alignment":"center","width":50,"height":50,"position":"center center","borderRadius":{"all":0,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att14269448245","target":"_blank","type":"attachment"},"link":{"value":"https://twitter.com/Appfire","target":"_blank","type":"link"}},"children":[],"id":"ZK6jIY2t-q3W6rpJ0JnX0"},{"name":"image","params":{"templateId":"square","alignment":"center","width":50,"height":50,"position":"center center","borderRadius":{"all":0,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att14269579415","target":"_blank","type":"attachment"},"link":{"value":"https://www.linkedin.com/company/appfire","target":"_blank","type":"link"}},"children":[],"id":"6b4Kbxl5xv0KFhzCfan2-"},{"name":"image","params":{"templateId":"square","alignment":"center","width":50,"height":50,"position":"center center","borderRadius":{"all":0,"bbl":0,"bbr":0,"btl":0,"btr":0,"isIndividualCorners":false},"image":{"value":"att14268825827","target":"_blank","type":"attachment"},"link":{"value":"https://www.youtube.com/user/appfire/","target":"_blank","type":"link"}},"children":[],"id":"u9aM9_6FIyqUkHUWNAj2y"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"pcmFTgYh0MqGQm9VpYLnL","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"1UHldLbDd14SE70Q9ZoXE","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,1,1,1],"gap":35,"minHeight":100,"padding":10,"borderRadius":0}}],"name":"section"},{"id":"q0gQydZDZBJ14zPmYrznK","params":{"background":"#F1F3F5","padding":0,"gap":10},"children":[{"id":"ZjFsWJRlUPOnIyMtimFEC","name":"row","children":[{"id":"2rb8i5JDnd4I920rbeDZE","name":"column","children":[{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","align":"center","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/privacy","target":"_blank","underlinetype":"link"},"children":[{"text":true"","color":"#3A3A3A#0091FF"},{"type":"link","link":{"value":"https://appfire.com/privacy-policy/","target":"_blank","type":"link"},"children":[{"letterSpacing":0,"text":"PRIVACY","fontFamily":"Roboto","fontSize":14,"color":"#3A3A3A#0091FF"}]},{"text":"","color":"#0091FF"}]},{"text":"#3A3A3A"}]}]}]},"children":[],"id":"BknMgFH3-vsPgMbz4ilSL"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"JelwPJiem_b4I_GeXxZ4j","name,"name":"column","children":[{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"columnparagraph","children":[{"nametext":"text"},{"paramstype":{"value"link","link":[{"typevalue":"paragraphhttps://trust.appfire.com/","childrentarget":[{"_blank","type":"paragraphlink"},"children":[{"text":"","color":"#3A3A3A"#0091FF","underline":true},{"type":"link","link":{"value":"https://trust.appfire.com/","target":"_blank","type":"link"},"children":[{"text":"SECURITY","letterSpacing":0,"fontSize":14,"color":"#0091FF","underline":"#3A3A3A"true}]},{"text":"","color":"#0091FF","underline":true}]},{"text":""}],"align":"center"}]}]},"children":[],"id":"BO8m25ZSFimGQfByBhwXN"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"PLpW7w1-Q5FZHycXWMyPp","name":"column","children":[{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/gdpr","target":"paragraph_blank","children":[{"type":"paragraphlink"},"children":[{"text":"","color":"#3A3A3A"#0091FF","underline":true},{"type":"link","link":{"value":"https://appfire.com/gdpr/","target":"_blank","type":"link"},"children":[{"text":"GDPR","letterSpacing":0,"fontSize":14,"color":"#0091FF","underline":true}]},{"text":"","color":"#3A3A3A"#0091FF","underline":true}]},{"text":""}],"align":"center"}]}]},"children":[],"id":"v1827-HU0fo6wdW5pLRqS"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"a67Rz0Gj-E5ILtWf__Nue","name":"column","children":[{"name":"text","params":{"value":[{"type":"paragraph","children":[{"type":"paragraph","children":[{"text":""},{"type":"link","link":{"value":"https://appfire.com/eula","target":"_blank","type":"link"},"children":[{"text":"","color":"#0091FF","#3A3A3Aunderline":true},{"type":"link","link":{"value":"https://appfire.com/eula/","target":"_blank","type":"link"},"children":[{"text":"EULA","letterSpacing":0,"fontSize":14,"color":"#3A3A3A"#0091FF","underline":true}]},{"text":"","color":"#000000#0091FF","underline":true}]},{"text":""}],"align":"center"}]}]},"children":[],"id":"oPBbLFjpTlvma-tima1Ps"}],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"TI68hZyHRLQ_0w0YJoD7t","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}},{"id":"pkP22X7YKcT2g3LeUcuVd","name":"column","children":[],"params":{"borderRadius":{"all":0,"btl":0,"bbl":0,"btr":0,"bbr":0,"isIndividualCorners":false},"padding":0,"gap":20,"verticalAlignment":"top"}}],"params":{"layout":[1,1,1,1],"gap":35,"minHeight":100,"padding":10,"borderRadius":0}}],"name":"section"}]}