NextPay Docs
Guide

Directory

Managing the directory in NextPay

The directory stores contacts, companies, and other entities within your organization.

List Directory Entries

curl -H "Authorization: Bearer YOUR_TOKEN" \
  https://api.nextpay.world/v1/directory

Create Entry

curl -X POST -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "Acme Corp", "type": "company"}' \
  https://api.nextpay.world/v1/directory

Tags

Directory entries can be tagged for organization and filtering.

curl -H "Authorization: Bearer YOUR_TOKEN" \
  https://api.nextpay.world/v1/directory/tags

On this page