Flow Types#
- class pywa.types.flows.FlowRequest#
Represents a flow data exchange request. This request is sent to the flow endpoint when a user interacts with a flow and perform an
Actionthat trigger a data exchange.Read more at developers.facebook.com.
- Variables:
version (str) β The version of the data exchange.
flow_token (str | None) β The flow token used to create the flow.
Noneif action isFlowRequestActionType.PING.action (pywa.types.flows.FlowRequestActionType) β The action that triggered the request.
screen (str | None) β The screen that triggered the request.
Noneif action isFlowRequestActionType.PING.data (dict[str, Any] | None) β The data sent from the screen.
Noneif action isFlowRequestActionType.PINGand optional if action isFlowRequestActionType.BACKorFlowRequestActionType.INIT.
- class pywa.types.flows.FlowRequestActionType#
The type the action that triggered the request.
- Variables:
INIT β if the request is triggered when opening the Flow
BACK β if the request is triggered when pressing βbackβ (The screen has
refresh_on_backset toTrue)DATA_EXCHANGE β if the request is triggered when submitting the screen
PING β if the request is triggered by a health check (ignore this requests by leaving
handle_health_checktoTrue)
- class pywa.types.flows.FlowResponse#
Represents a flow data exchange response. This response is sent to the flow endpoint to determine the next screen to display or to close the flow. You should return this response from your flow endpoint callback.
Read more at developers.facebook.com.
- Variables:
version (str) β The version of the data exchange.
screen (str | None) β The screen to display (if the flow is not closed).
data (dict[str, Any]) β The data to send to the screen or to add to flow completion message (received to the webhook).
error_message (str | None) β This will redirect the user to
screenand will trigger a snackbar error with the error_message present (if the flow is not closed).flow_token (str | None) β The flow token to close the flow (if the flow is closed).
close_flow (bool) β Whether to close the flow or just navigate to the screen.
- class pywa.types.flows.FlowCategory#
The category of the flow
- Variables:
SIGN_UP β Sign up
SIGN_IN β Sign in
APPOINTMENT_BOOKING β Appointment booking
LEAD_GENERATION β Lead generation
CONTACT_US β Contact us
CUSTOMER_SUPPORT β Customer support
SURVEY β Survey
OTHER β Other
- class pywa.types.flows.FlowDetails#
Represents the details of a flow.
Read more at developers.facebook.com.
- Variables:
id (str) β The ID of the flow.
name (str) β The name of the flow.
status (FlowStatus) β The status of the flow.
json_version (str | None) β The version of the flow JSON.
data_api_version (str | None) β The version to use during communication with the WhatsApp Flows Data Endpoint.
categories (tuple[FlowCategory, ...]) β The categories of the flow.
validation_errors (tuple[FlowValidationError, ...] | None) β The validation errors of the flow.
endpoint_uri (str | None) β The endpoint URI of the flow.
preview (FlowPreview | None) β The preview of the flow.
whatsapp_business_account (WhatsAppBusinessAccount | None) β The WhatsApp Business Account that owns the flow.
application (FacebookApplication | None) β The application that owns the flow.
- publish() bool#
- Update the status of this flow to
FlowStatus.PUBLISHED. A shortcut for
pywa.client.WhatsApp.publish_flow().
This action is not reversible.
The Flow and its assets become immutable once published.
To update the Flow after that, you must create a new Flow. You specify the existing Flow ID as the clone_flow_id parameter while creating to copy the existing flow.
You can publish your Flow once you have ensured that:
All validation errors and publishing checks have been resolved.
The Flow meets the design principles of WhatsApp Flows
The Flow complies with WhatsApp Terms of Service, the WhatsApp Business Messaging Policy and, if applicable, the WhatsApp Commerce Policy
- Returns:
Whether the flow was published.
- Raises:
FlowPublishingError β If this flow has validation errors or not all publishing checks have been resolved.
- Update the status of this flow to
- delete() bool#
- When the flow is in
FlowStatus.DRAFTstatus, you can delete it. A shortcut for
pywa.client.WhatsApp.delete_flow().
- Returns:
Whether the flow was deleted.
- Raises:
FlowDeletingError β If this flow is already published.
- When the flow is in
- deprecate() bool#
When the flow is in
FlowStatus.PUBLISHEDstatus, you can only deprecate it.- Returns:
Whether the flow was deprecated.
- Raises:
FlowDeprecatingError β If this flow is not published or already deprecated.
- get_assets() tuple[pywa.types.flows.FlowAsset, ...]#
Get all assets attached to this flow.
- Returns:
The assets of the flow.
- update_metadata(name: str | None = None, categories: Iterable[FlowCategory | str] | None = None, endpoint_uri: str | None = None) bool#
- Parameters:
flow_id β The flow ID.
name β The name of the flow (optional).
categories β The new categories of the flow (optional).
endpoint_uri β The URL of the FlowJSON Endpoint. Starting from FlowJSON 3.0 this property should be specified only gere. Do not provide this field if you are cloning a FlowJSON with version below 3.0.
Example
>>> from pywa.types.flows import FlowCategory >>> wa = WhatsApp(business_account_id='1234567890', ...) >>> my_flows = wa.get_flows() >>> my_flows[0].update_metadata( ... name='Feedback', ... categories=[FlowCategory.SURVEY, FlowCategory.OTHER], ... endpoint_uri='https://my-api-server/feedback_flow' ... )
- Returns:
Whether the flow was updated.
- Raises:
ValueError β If neither
name,categoriesorendpoint_uriis provided.
- update_json(flow_json: FlowJSON | dict | str | Path | bytes | BinaryIO) bool#
Update the json of this flow.
- Parameters:
flow_json β The new json of the flow. Can be a
FlowJSONobject,dict, jsonstr, json file path or json bytes.- Returns:
Whether the flow was updated.
- Raises:
FlowUpdatingError β If the flow json is invalid or this flow is already published.
- class pywa.types.flows.FlowStatus#
The status of the flow
- Variables:
DRAFT β This is the initial status. The Flow is still under development. The Flow can only be sent with βmodeβ: βdraftβ for testing.
PUBLISHED β The Flow has been marked as published by the developer so now it can be sent to customers. This Flow cannot be deleted or updated afterwards.
DEPRECATED β The developer has marked the Flow as deprecated (since it cannot be deleted after publishing). This prevents sending and opening the Flow, to allow the developer to retire their endpoint. Deprecated Flows cannot be deleted or deprecated.
BLOCKED β Monitoring detected that the endpoint is unhealthy and set the status to Blocked. The Flow cannot be sent or opened in this state; the developer needs to fix the endpoint to get it back to Published state (more details in Flows Health and Monitoring).
THROTTLED β
Monitoring detected that the endpoint is unhealthy and set the status to Throttled. Flows with throttled status can be opened, however only 10 messages of the Flow could be sent per hour. The developer needs to fix the endpoint to get it back to the PUBLISHED state (more details in Flows Health and Monitoring on developers.facebook.com).
- class pywa.types.flows.FlowPreview#
Represents the preview of a flow.
- Variables:
url (str) β The URL to the preview.
expires_at (datetime.datetime) β The expiration date of the preview.
- class pywa.types.flows.FlowValidationError#
Represents a validation error of a flow.
- Variables:
error (str) β The error code.
error_type (str) β The type of the error.
message (str) β The error message.
line_start (int) β The start line of the error.
line_end (int) β The end line of the error.
column_start (int) β The start column of the error.
column_end (int) β The end column of the error.
- class pywa.types.flows.FlowAsset#
Represents an asset in a flow.
Read more at developers.facebook.com.
- class pywa.types.flows.FlowTokenNoLongerValid#
This exception need to be returned or raised from the flow endpoint callback when the Flow token is no longer valid.
The layout will be closed and the
FlowButtonwill be disabled for the user. You can send a new message to the user generating a new Flow token. This action may be used to prevent users from initiating the same Flow again.You are able to set an error message to display to the user. e.g. βThe order has already been placedβ
- class pywa.types.flows.FlowRequestSignatureAuthenticationFailed#
This exception need to be returned or raised from the flow endpoint callback when the request signature authentication fails.
A generic error will be shown on the client.
- pywa.utils.FlowRequestDecryptor#
Type hint for the function that decrypts the request from WhatsApp Flow.
All parameters need to be positional.
- Parameters:
- Returns:
tuple[dict, bytes, bytes] - decrypted_data (dict): decrypted data from the request - aes_key (bytes): AES key you should use to encrypt the response - iv (bytes): initial vector you should use to encrypt the response
- pywa.utils.FlowResponseEncryptor#
Type hint for the function that encrypts the response to WhatsApp Flow.
All parameters need to be positional.