curl --request GET \
--url https://api.paygentic.io/v0/merchants/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"object": "merchant",
"name": "<string>",
"email": "jsmith@example.com",
"description": "<string>",
"metadata": {},
"vatNumber": "<string>",
"address": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zipCode": "<string>"
},
"billingAddress": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zipCode": "<string>"
},
"phone": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
curl --request GET \
--url https://api.paygentic.io/v0/merchants/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"object": "merchant",
"name": "<string>",
"email": "jsmith@example.com",
"description": "<string>",
"metadata": {},
"vatNumber": "<string>",
"address": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zipCode": "<string>"
},
"billingAddress": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zipCode": "<string>"
},
"phone": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The unique identifier of the merchant organization to retrieve.
Merchant organization details
The response is of type object
.