Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #551 from zapier/fix_quac_docs
Browse files Browse the repository at this point in the history
[PARTOPS-858] Fix small formatting + grammatical errors on QuAC docs
  • Loading branch information
michellechu77 authored Dec 5, 2023
2 parents a74ba14 + 99b8cbc commit 8033bcb
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions docs/_embed/quick-account-creation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@ Quick Account Creation is a seamless, accelerated sign-up feature allowing first

Instead of being directed to a sign-up screen, users are presented with a consent page to connect to Zapier, then proceed to the Zap editor if consented. If an existing Zapier account under the email does not exist, users will receive an email prompting them to finish setting up their account. This allows users to dive directly into the Zap editor to accomplish the task at hand efficiently and without context switching.

## Example implementation
## Case study

This video shows an example implementation of Quick Account Creation with the Zap template element embedded within Adalo's platform, providing their users with an accelerated, sign-up experience:
Signups to use Adalo's integration jumped 40% after embedding Zapier with Quick Account Creation into their app builder. [Read more about Adalo's user experience and results.](https://zapier.com/blog/adalo-user-experience-with-zapier/)

<iframe allowtransparency="true" title="Search or create" allowFullscreen frameborder="0" scrolling="no" class="wistia_embed" name="wistia_embed" src="https://cdn.zappy.app/v1f21dbddbc570407248253c13859a5d9.mp4" width="640" height="360"></iframe>
## Example implementation

## Case study
This video demonstrates how to implement Quick Account Creation using the Zap template element within Adalo's platform. This provides users with a faster, seamless sign-up experience.

Signups to use Adalo's integration jumped 40% after embedding Zapier with Quick Account Creation into their app builder. [Read more about Adalo's user experience and results.](https://zapier.com/blog/adalo-user-experience-with-zapier/).
<iframe allowtransparency="true" title="Search or create" allowFullscreen frameborder="0" scrolling="no" class="wistia_embed" name="wistia_embed" src="https://cdn.zappy.app/v1f21dbddbc570407248253c13859a5d9.mp4" width="640" height="360"></iframe>

## Prerequisites

- New or existing implementation of the [Full Zapier Experience](https://platform.zapier.com/embed/full-zapier-experience), [Zap templates element](https://platform.zapier.com/embed/zap-templates), or [Partner API](https://platform.zapier.com/embed/partner-api).
- Access to your user’s first name, last name, and email on the page supporting Quick Account Creation.

## Add support for Quick Account Creation on embed elements
## Add support on embed elements

1. Go to the [generator tool](https://zapier.com/partner/solutions/plug-and-play) for either the Full Zapier Experience or [Zap templates element](https://platform.zapier.com/embed/zap-templates).
1. Go to the [generator tool](https://zapier.com/partner/solutions/plug-and-play) for either the [Full Zapier Experience]((https://platform.zapier.com/embed/full-zapier-experience)) or [Zap templates element](https://platform.zapier.com/embed/zap-templates).
2. Customize the visual design and features of the embed solution of choice.
3. Generate the embed code in HTML, Vanilla JS, React, Angular, or Vue.js.
4. Replace the placeholder values set to `client-id`, `sign-up-email`, `sign-up-first-name`, and `sign-up-last-name` in the code **Body**. All four values are required for Quick Account Creation.
4. Replace the placeholder values set to `sign-up-email`, `sign-up-first-name`, and `sign-up-last-name` in the code **Body**. All three values and the client ID are required for Quick Account Creation.
5. Embed both the **Head** and **Body** code on your product's page.

You can still embed the Full Zapier Experience and Zap templates element, or utilize the Partner API without support for Quick Account Creation. If the four required fields aren’t provided, the embed will use the default behaviour redirecting users to Zapier's signup page from your product's page.
Expand All @@ -41,24 +41,24 @@ If you have an existing Full Zapier Experience or Zap templates element embed, y
- sign-up-first-name="first_name_of_your_user"
- sign-up-last-name="last_name_of_your_user"

## Add support for Quick Account Creation with the Partner API
## Add support to the Partner API

1. Retrieve your integration's name from the "title" field returned from the [`/apps` endpoint](https://platform.zapier.com/embed/partner-api#get-v1apps).
2. Redirect users to the acknowledgement page URL below:
`https://zapier.com/partner/acknowledgment?sign-up-last-name=<sign-up-last-name>&next=%2Fapp%2Fdashboard&type=quac&name=<Partner Name>&sign-up-first-name=<sign-up=first-name>&sign-up-email=<sign-up-email>`
3. Replace the following query parameter placeholders in the URL, using the "title" value from step 1 for the "name" parameter:
- sign-up-first-name=<sign-up-first-name>
- sign-up-last-name=<sign-up-last-name>
- sign-up-email=<sign-up-email>
- name=<Partner Name>
- name=`<partner-name>`
- sign-up-first-name=`<sign-up-first-name>`
- sign-up-last-name=`<sign-up-last-name>`
- sign-up-email=`<sign-up-email>`

After an account is created, a [user token still needs to be procured](https://platform.zapier.com/embed/partner-api#access-token) to access specific Partner API endpoints. Generally, since the user will already be signed in to their newly created account in an active session on Zapier, users won't have to explicitly sign in again when prompted with Zapier's OAuth flow.

## When Quick Account Creation is enabled

- If the user is already logged into Zapier, they are redirected to Zap editor.
- If the user is already logged into Zapier, they are redirected to the Zap editor.
- If the user’s email is already associated with a Zapier account, but the user is not logged in, they are redirected to Zapier's sign-in page.
- If the user's email is not associated with an existing Zapier account, they are redirect to the consent page.
- If the user consents to the terms and selects "Continue", a Zapier account is created on their behalf and they are redirected to the Zap editor.
- If the user's email is not associated with an existing Zapier account, they are redirected to the consent page.
- If the user consents to the terms and selects "Continue", a Zapier account is created on their behalf and they are redirected to the Zap editor. They receive an email to finish setting up their account shortly after the account is created.
- If the user closes the consent page, no Zapier account is created.
- If there is an error creating an account, the user is redirected to an error page.

0 comments on commit 8033bcb

Please sign in to comment.