> For the complete documentation index, see [llms.txt](https://docs.gatenox.com/gatenox-hub-wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gatenox.com/gatenox-hub-wiki/compliance-cloud-how-to/start-onboarding-customers-with-gatenox/apply-via-gatenox.md).

# Apply via Gatenox

Instead of sending each user an invitation email ([Send the invitation for review to the corporate client](/gatenox-hub-wiki/compliance-cloud-how-to/start-onboarding-customers-with-gatenox/send-invitation-for-review.md)), you can add "Apply via Gatenox" button or link on your webpage / portal using your referral code ([Referral code](/gatenox-hub-wiki/compliance-cloud-how-to/start-onboarding-customers-with-gatenox/referral-code.md)).

You can use the following button to inform users about verification processes via Gatenox:

<figure><img src="/files/cpGaKe9z1EKIyVVAdH8Y" alt="&#x22;Apply via Gatenox&#x22; button"><figcaption><p>"Apply via Gatenox" button</p></figcaption></figure>

{% tabs %}
{% tab title="button.html" %}

```
<a class="GatenoxButton" href="https://app.gatenox.com/referrals/join/GATENOX">
	<div class="GatenoxButton-caption">Apply via Gatenox</div>
</a>
```

The "GATENOX" code in href link should be replaced with your referral code. It is available to copy from "Settings" menu, tab "Company information" ([Referral code](/gatenox-hub-wiki/compliance-cloud-how-to/start-onboarding-customers-with-gatenox/referral-code.md#where-is-my-referral-code)).
{% endtab %}

{% tab title="button.css" %}

```
.GatenoxButton {
  margin: 0 auto;
  display: block;
  position: relative;

  height: 50px;
  width: 286px;
  border-radius: 10px;
  background-color: #6610F2;
  box-shadow: 0 5px 10px -5px rgba(0,0,0,0.2);
}

.GatenoxButton-caption {
  position: absolute;
  top: 9px;
  left: 62px;

  height: 30px;
  width: 224px;
  color: #FFFFFF;
  font-family: Roboto;
  font-size: 24px;
  line-height: 30px;
  font-weight: 100;
  text-align: center;

}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.gatenox.com/gatenox-hub-wiki/compliance-cloud-how-to/start-onboarding-customers-with-gatenox/apply-via-gatenox.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
