Patch Trades Quality Assurance Traded
PATCH /api/v1/trades/{tradeId}/quality-assurance
Description
Update quality assurance information for a trade.
Path Parameters
| Name | Type | Description |
|---|---|---|
tradeId | string | The ID of the trade (path) |
Request Headers
| Name | Type | Description |
|---|---|---|
tenantId | string | The tenant ID (header) |
userId | string | The user ID (header) |
Request Body
- Content Type:
application/json
{
"state": "string",
"lga": "string",
"address": "string"
}
Response Code: 200 - OK
Description
The quality assurance information was updated successfully.
Headers
| Content-Type | Value |
|---|---|
| apiKey | {{apiKey}} |
| tenantId | string |
| userId | string |
Body
{
"state": "Lagos",
"lga": "Ikeja",
"address": "123 Trade Street"
}
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request PATCH \
--url /api/v1/trades/{tradeId}/quality-assurance \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!