Bynet
  1. Products
Bynet
  • 🚀 Introdução à API
  • 📦 Criar Pedido
  • My company
    • Get all data
      GET
    • Update
      PUT
    • Update documents
      PUT
    • Get by ID
      GET
    • Update other info
      PUT
  • Products
    • Create
      POST
    • Find All
      GET
    • Find by ID
      GET
    • Update
      PUT
    • Delete
      DELETE
    • Update Status
      PUT
  • Bank
    • Create
      POST
    • Find all
      GET
    • Find by ID
      GET
    • Find pre bank
      GET
  • Transactions
    • Find All
      GET
    • Create
      POST
    • Find by ID
      GET
    • Update delivery status
      PUT
    • Export Excel
      POST
    • Summary all
      GET
    • Fee
      POST
    • Summary by ID
      GET
  • Checkout
    • Layouts
      • Create Layout
      • Find
      • Update settings
      • Update status
      • Find by ID
    • Find info
    • Create Order
    • Find info order
    • Find payment methods by ID
    • Create payment
    • Find payment methods
  • Transfers
    • Create
    • Update
    • Find all
    • Find by ID
    • summary
  • Cashout
    • Create
    • Find all
    • Find by ID
  • Customers
    • Find all
    • Find by ID
  • Balance
    • Find
    • Summary
    • Find finalcial reserve
  • Webhook
    • ⚙️ Webhook: Formato de Postback
    • Create
    • Find all
    • Find by ID
    • Update
    • Delete
  1. Products

Find by ID

GET
/api/user/products/{id}

🛍️ Consultar Produto por ID#

Este endpoint permite consultar um produto específico com base no ID do produto cadastrado pelo usuário autenticado.

✅ Requisitos da Requisição#

Método HTTP: GET
Endpoint: /api/user/products/{id}
Content-Type: application/json
Autenticação: api_token

🧠 Header da requisição#

CampoTipoObrigatórioDescrição
x-api-keystringSimToken de autenticação API Key
User-AgentAtivoB2B/1.0Sim

⚙️ Parâmetros de Consulta#

ParâmetroTipoObrigatórioDescrição
idstringSimID do produto a ser buscado.

Request

Path Params

Header Params

Responses

🟢200Success
application/json
Body

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/user/products/' \
--header 'x-api-key: {Token}' \
--header 'User-Agent: AtivoB2B/1.0'
Response Response Example
200 - Success
{
  "data": {
    "id": "0",
    "title": "Criar produto",
    "description": "desc",
    "shippingType": "DIGITAL",
    "status": "ACTIVE",
    "unitPrice": 9000,
    "maxInstallments": 9,
    "accessLink": "teste.com",
    "additionalInfo": "case",
    "images": [
      {
        "id": "0",
        "key": "0.jpg",
        "url": "X"
      }
    ],
    "paymentMethod": {
      "PIX": false,
      "BOLETO": true,
      "CREDIT_CARD": false
    },
    "sellerId": "0",
    "uniqueProductLinkId": "0",
    "createdAt": "2025-04-09T21:44:23.038Z",
    "updatedAt": "2025-04-10T04:34:51.676Z",
    "deletedAt": null,
    "sellerProductLinks": [
      {
        "id": "0",
        "title": null,
        "description": null,
        "maxInstallments": null,
        "price": null,
        "status": "ACTIVE",
        "paymentMethod": {
          "PIX": false,
          "BOLETO": true,
          "CREDIT_CARD": false
        },
        "checkoutLayoutSettingsId": "0",
        "checkoutDomainId": "0",
        "sellerId": "0",
        "createdAt": "2025-04-09T21:44:23.099Z",
        "updatedAt": "2025-04-10T04:34:51.676Z",
        "deletedAt": null,
        "checkoutDomain": {
          "id": "0",
          "projectId": null,
          "domain": "X",
          "dnsRecords": [],
          "status": "ACTIVE",
          "type": "DEFAULT",
          "createdAt": "2025-03-26T21:51:28.250Z",
          "updatedAt": "2025-03-26T21:51:28.250Z",
          "deletedAt": null,
          "sellerId": "0"
        }
      }
    ],
    "uniqueLink": "X"
  },
  "message": "O produto foi encontrado com sucesso",
  "status": 200,
  "error": null
}
Modified at 2025-07-23 19:02:40
Previous
Find All
Next
Update
Built with