# Create a new proposal

## Create a new proposal

<mark style="color:green;">`POST`</mark> `https://api.sponseasy.com/v2/user/proposals`

This endpoint allows you to create a new proposal.

#### Query Parameters

| Name                         | Type   | Description |
| ---------------------------- | ------ | ----------- |
| form\_process\[form\_id]     | string |             |
| form\_process\[template\_id] | string |             |

{% tabs %}
{% tab title="200 Request successfully executed." %}

```
{ 
  status: "success",
  data: {
    proposal: {
      id: id,
      name: name,
      slug: slug,
      user_id: user_id,
      status: status,
      stats: stats,
      settings: settings,
      crm: {
        leads: leads
      },
      template: { ... },
      version_active: version,
      versions: versions,
      pages: [ { ... } ]
    }
  }
}
```

{% endtab %}

{% tab title="400 Could not find a success matching this query." %}

```
{ 
  status: "error",
  message: ["error_message"]
}
```

{% endtab %}
{% endtabs %}
