> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.tahesab.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.tahesab.com/_mcp/server.

# GetEtiketInfoByCodeWithImage

GET http://127.0.0.1:8081/#get20
Content-Type: application/json

نمایش مشخصات اتیکت بر اساس شناسه کار

Reference: https://docs.tahesab.com/tahesab-a-pi/get-etiket-info-by-code-with-image

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /#get20:
    get:
      operationId: GetEtiketInfoByCodeWithImage
      summary: GetEtiketInfoByCodeWithImage
      description: نمایش مشخصات اتیکت بر اساس شناسه کار
      tags:
        - ''
      parameters:
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
        - name: DBName
          in: header
          required: false
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetEtiketInfoByCodeWithImage_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                getetiketinfobycodewithimage:
                  type: array
                  items:
                    type: string
              required:
                - getetiketinfobycodewithimage
servers:
  - url: http://127.0.0.1:8081
    description: http://127.0.0.1:8081
  - url: https://127.0.0.1:8081
    description: https://127.0.0.1:8081
  - url: https://[::1]:8081
    description: https://[::1]:8081
  - url: http://127.0.0.1:808
    description: http://127.0.0.1:808
components:
  schemas:
    GetEtiketInfoByCodeWithImage_Response_200:
      type: object
      properties:
        '1':
          type: array
          items:
            type: string
        '9':
          type: array
          items:
            type: string
        '10':
          type: array
          items:
            type: string
      required:
        - '1'
        - '9'
        - '10'
      title: GetEtiketInfoByCodeWithImage_Response_200
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```

## Examples



**Request**

```json
{
  "getetiketinfobycodewithimage": [
    "1",
    "9",
    "10"
  ]
}
```

**Response**

```json
{
  "1": [
    "Not_Found"
  ],
  "9": [
    "Not_Found"
  ],
  "10": [
    "Not_Found"
  ]
}
```

**SDK Code**

```python GetEtiketInfoByCodeWithImage_example
import requests

url = "http://127.0.0.1:8081/#get20"

payload = { "getetiketinfobycodewithimage": ["1", "9", "10"] }
headers = {
    "DBName": "{{DBName}}",
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.get(url, json=payload, headers=headers)

print(response.json())
```

```javascript GetEtiketInfoByCodeWithImage_example
const url = 'http://127.0.0.1:8081/#get20';
const options = {
  method: 'GET',
  headers: {
    DBName: '{{DBName}}',
    Authorization: 'Bearer <token>',
    'Content-Type': 'application/json'
  },
  body: '{"getetiketinfobycodewithimage":["1","9","10"]}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go GetEtiketInfoByCodeWithImage_example
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "http://127.0.0.1:8081/#get20"

	payload := strings.NewReader("{\n  \"getetiketinfobycodewithimage\": [\n    \"1\",\n    \"9\",\n    \"10\"\n  ]\n}")

	req, _ := http.NewRequest("GET", url, payload)

	req.Header.Add("DBName", "{{DBName}}")
	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby GetEtiketInfoByCodeWithImage_example
require 'uri'
require 'net/http'

url = URI("http://127.0.0.1:8081/#get20")

http = Net::HTTP.new(url.host, url.port)

request = Net::HTTP::Get.new(url)
request["DBName"] = '{{DBName}}'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"getetiketinfobycodewithimage\": [\n    \"1\",\n    \"9\",\n    \"10\"\n  ]\n}"

response = http.request(request)
puts response.read_body
```

```java GetEtiketInfoByCodeWithImage_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("http://127.0.0.1:8081/#get20")
  .header("DBName", "{{DBName}}")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"getetiketinfobycodewithimage\": [\n    \"1\",\n    \"9\",\n    \"10\"\n  ]\n}")
  .asString();
```

```php GetEtiketInfoByCodeWithImage_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'http://127.0.0.1:8081/#get20', [
  'body' => '{
  "getetiketinfobycodewithimage": [
    "1",
    "9",
    "10"
  ]
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
    'DBName' => '{{DBName}}',
  ],
]);

echo $response->getBody();
```

```csharp GetEtiketInfoByCodeWithImage_example
using RestSharp;

var client = new RestClient("http://127.0.0.1:8081/#get20");
var request = new RestRequest(Method.GET);
request.AddHeader("DBName", "{{DBName}}");
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"getetiketinfobycodewithimage\": [\n    \"1\",\n    \"9\",\n    \"10\"\n  ]\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift GetEtiketInfoByCodeWithImage_example
import Foundation

let headers = [
  "DBName": "{{DBName}}",
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = ["getetiketinfobycodewithimage": ["1", "9", "10"]] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "http://127.0.0.1:8081/#get20")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```