Invoice Setting - Get Logo
GET /api/v1/InvoiceSetting/GetLogo
Description
This endpoint is used to get the logo settings. It retrieves the logo settings for invoices.
Headers:
- Content-Type: application/json
ApiKey:
- No API key required
Path Parameters:
- version: string, required
URL:
- GET:
{{baseUrl API url}}/api/v1/InvoiceSetting/GetLogo
Response:
- 200: Success, returns the logo settings for invoices.
Error Codes:
-
404: Resource not found, the specified version or setting does not exist.
-
500: Internal server error, something went wrong while processing the request.
Example Request URL:
GET /api/v1/InvoiceSetting/GetLogo
Content-Type: application/json
Example Response:
HTTP/1.1 200 OK
{
"logoSettings": [
{
"logoPath": "path/to/logo",
"isActive": true
}
]
}
Notes:
- The response includes a list of all logo settings for invoices, including the logo path and activation status.
Method: GET
/api/v1/InvoiceSetting/GetLogo
Response: 200
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v1/InvoiceSetting/GetLogo \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!