Skip to main content

I am working in Postman. The field in question is "Taxes Owed - PDF". I get the error shown below. If I change the field type to single-line text I don't get an error. I don't want to change the field type. How do I avoid the error?  I have also tried other values: $3333, $3333.00, 3300.00, $3,333.00

TIA

{
    "error": {
        "type": "INVALID_VALUE_FOR_COLUMN",
        "message": "Field \\"Taxes Owed - PDF\\" cannot accept the provided value"
    }
}

 

{
    "fields": {
        "Case #": "12345",
        "File Date": "1/13/2024",
        "Taxes Owed - PDF": "3333"
    }
}

Do not put quotation marks around the number.


I was able to figure it out. Quotes should not be used for currency.

This worked:

{
    "fields": {
        "Case #": "12345",
        "File Date": "1/13/2024",
        "Taxes Owed - PDF": 3333
    }
}

 


Ha, yes. You probably didn’t see that I posted the answer a few minutes before you figured it out. 😝


Ha, yes. You probably didn’t see that I posted the answer a few minutes before you figured it out. 😝


posting. I marked your answer as asolution too.Yes- Thanks for


You’re welcome! I’m glad you figured it out on your own, too! Great job!! 😎🙌


Reply