Back to all

Context: Read/Write Opportunity record via API

Hello Admins,

I'm trying to find and read Currency field (System Field) of an Opportunity. When I run below payload the field is not included, I believe I'm looking for Revenue_Currency_Id field but it is not included the result payload.
I would like to ask if that field is exposed via the API and if it is what would be the valid query for that field?

Thank you
Kris

Payload example:

{
	"opportunity": {
		"criteria": {
			"searchQuery": {
				"key": {
					"$EQ": "<Valid_Opp_ID>"
				}
			}
		},
		"scope": {
			"fields": {
				"key": 1
			},
			"types": {
				"*": {
					"$metadata": {
						"key": 1,
						"type": 1,
						"displayValue": 1
                        
					},
					"displayValue": 1
				}
			}
		}
	}
}