Guides

Creating and Managing Vendors

Creating Vendors

Vendors (C3) are entities that your customers (C2) pay. They can be individuals or businesses.

Vendors can be created in the dashboard or with the create entity endpoint, and linked to a customer using the link payees endpoint.

They can also automatically be created when a customer adds a new vendor through the react component or embed.

Creating the Vendor Entity

Using the create entity endpoint, create a new entity, and make sure the following are set

1{
2 isPayee: true // This marks the entity as able to receive funds
3 isPayor: false // This marks the entity as unable to pay funds
4 isCustomer: false // This indicated that you don't have a direct relationship with this entity (aka, they are your customer's vendor)
5}

This will automatically add the vendor to the platform network.

Capturing Vendor Details

If you don’t have the vendor’s details, you can use the generate onboarding link endpoint to create a link that the vendor can use to provide their details. This link will be valid for 24 hours. You can also use the send onboarding email endpoint to send the link to the vendor via email. This link will be valid for 7 days, and will be emailed to the entity email.

You can configure what details are required for the vendor using the dashboard or api.

Adding the Vendor to the Payer as a Counterparty

Once the vendor entity is created, you need to link it to the payer.

You can link the vendor to any entity using the link payees endpoint. This will create a relationship between the two entities, and allow the payer to pay the vendor.

For example, if you have a payer Entity with id ent_123, and a vendor Entity with id ent_456, you can link them using the following request

1curl -X POST \
2 --url "https://api.mercoa.com/entity/ent_123/addPayees" \
3 --header "Content-Type: application/json" \
4 --header "Authorization <token>" \
5 --data '
6{
7 "payees": [
8 "ent_456"
9 ]
10}
11'

Finding Counterparties

Once you have created and linked vendors to the payer, you can use the get counterparties endpoint to find the vendors linked to the payer.

1curl -X POST \
2 --url "https://api.mercoa.com/entity/ent_123/payeeCounterparties" \
3 --header "Content-Type: application/json" \
4 --header "Authorization <token>"

Hiding / Archiving Counterparties

If you don’t want a counterparty to show up for an Entity in the counterparty search, you can hide them using the hide payee from search endpoint.

1curl -X POST \
2 --url "https://api.mercoa.com/entity/ent_123/archivePayees" \
3 --header "Content-Type: application/json" \
4 --header "Authorization <token>" \
5 --data '
6{
7 "payees": [
8 "ent_456"
9 ]
10}
11'