# Wix Marketplace

When submitting your app to the Wix marketplace, you'll need to provide 3 critical URLs if using the custom authentication option:

### 1. External URL

The external URL extension allows you display an embedded instance of your installed app inside the Wix dashboard.

{% code overflow="wrap" %}

```
https://exmart.pandium.io/v1/wix/dashboard/<account_name>/<integration_name>
```

{% endcode %}

Replace `<account_name>` and `<integration_name>` with your specific values.

### 2. App URL

This App URL is used to initiate an integration install from the Wix Dashboard to kick off the Oauth flow:

```
https://exmart.pandium.io/v1/wix/auth/<account_name>/<integration_name>
```

The URL will most likely resemble the above, but simply use this URL for the 'Install' page of this App in your Marketplace.

### 3. Redirect URL

When users authorize your app, Wix will redirect them to this URL with a temporary authorization code.

**Sandbox**

```
https://api.sandbox.pandium.com/v0/author/callback/oauth2
```

```
https://exmart.sandbox.pandium.com/v1/wix/redirect/<account_name>/<integration_name>
```

**Production**

```
https://api.pandium.io/v0/author/callback/oauth2
```

```
https://exmart.pandium.io/v1/wix/redirect/<account_name>/<integration_name>
```

### Need Help?

If you encounter issues during the listing process, please feel free to contact your Pandium Technical Account Manager for assistance.


---

# Agent Instructions: 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:

```
GET https://docs.pandium.com/marketplaces/listing-in-external-marketplaces/wix-marketplace.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
