tray-parceiros

Manage reseller partner records via the Tray partners API.

14|Updated Mar 21, 2026
One-click install
npx skills add https://github.com/tray-tecnologia/tray-api-claude-plugin --skill tray-parceiros
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: tray-parceiros
Source: https://github.com/tray-tecnologia/tray-api-claude-plugin/tree/main/skills/parceiros
Command: npx skills add https://github.com/tray-tecnologia/tray-api-claude-plugin --skill tray-parceiros

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Centralizes and automates management of reseller/partner records for Tray-based stores so developers and store managers can list, create, update, and remove partners without manual API discovery or repeated boilerplate.

Core Features & Use Cases

  • CRUD for Partners: List all partners, retrieve a partner by ID, create new partners, update partner data, and delete partners.
  • Pagination and Filtering: Support for pagination parameters (limit, page) to handle large partner lists.
  • Integration Scenarios: Useful for onboarding resellers, syncing partner directories, and automating partner account provisioning in e-commerce workflows.

Quick Start

Create a new reseller partner with name Parceiro Exemplo and email [email protected].

Frequently Asked Questions about tray-parceiros

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage Tray reseller partners via the API?▼

You can manage Tray reseller partners by sending requests to CRUD endpoints like GET /partners and POST /partners using JSON Partner wrappers, requiring an access_token for authentication.

Can I paginate partner lists when querying the Tray partners API?▼

Yes, the Tray partners API supports pagination through limit and page parameters, allowing you to handle large partner lists efficiently across multiple requests.

What authentication is required to create and update partners in Tray?▼

Creating and updating partners in Tray requires an access_token for authentication, sent alongside JSON Partner wrappers to endpoints like POST /partners and PUT /partners/:id.

Does the Tray partners API support deleting reseller records?▼

Yes, the Tray partners API supports deleting reseller records via the DELETE /partners/:id endpoint, requiring a valid access_token for authentication.

What is the best way to automate partner onboarding for Tray stores?▼

Automating partner onboarding for Tray stores involves using POST /partners to create new reseller records with JSON Partner wrappers, authenticated via an access_token.

Can I retrieve a single Tray partner by their ID?▼

Yes, you can retrieve a single Tray partner by sending a GET request to the /partners/:id endpoint with a valid access_token for authentication.