# Enpoint

http://{terminalIp}/devices/posprinter/printNormal

# Request

Property Type Description
HTTP Headers
Signature String Sha-256 hmac of the JSON payload.
Content-Type text/plain Content-type of the payload.
JSON
poyntRequestId String UUID of the request.
tiemout int Client timeout in milliseconds.
printingRequest object Encloses the property below.
content String Text to print. Property inside the printingRequest object.

# Response

Property Type Description
HTTP Headers
Content-Type application/json Content-type of the payload.
Signature String Sha-256 hmac of the JSON payload.
JSON
poyntRequestId String Echos the value that was sent in the request.

# Request Example

POST /devices/posprinter/printNormal HTTP/1.1
Host: 127.0.0.1:55555
User-Agent: curl/7.43.0
Accept: */*
Content-Type: text/plain
Signature: d81b8b51cbe18381e225120720e2a59d9973d01d04e338212bc8b65d9f2d8e96
Content-Length: 135 =>
{
    "timeout":70000, 
    "poyntRequestId":"3B35ED17-0812-4AF2-942C-17ADBF89EA74",
    "printingRequest":{
        "content": "Your order#:\n553\n\n\n\n\n"
    }
}

# Response Example

HTTP/1.1 200 OK
Connection: Keep-Alive
Signature: 4709EC46B966C73CF8EE03CB106C1215D4734DD542DC37E73755EB14658EA815
Content-Length: 57
Content-Type: application/json <=
{
    "poyntRequestId":"3B35ED17-0812-4AF2-942C-17ADBF89EA74"
}
Last Updated: 8/14/2023, 1:52:36 PM