Add Descriptive Flexfield Information to a Receipt

You receive a customer's payment information for a subsidiary purchase. You want to add this information to the receipt flexfield.

POST
fscmRestApi/resources/11.13.18.05/standardReceipts

Example Request

Here's an example of the request body in JSON format:

{
	"ReceiptNumber":"SKR_Receipt_1011",
	"ReceiptMethod":"Manual",
	"BusinessUnit":"Vision Operations",
	"Amount":"451.23",
	"Currency":"USD",
	"RemittanceBankAccountNumber":"10271-17621-619",
	"standardReceiptDFF": 
	[	{
			"__FLEX_Context":"Third Party",
			"firstName":"Sanjay",
			"lastName":"Kumar"
		}
	]
}

Example Response

Here's an example of the response body in JSON format:

{
	"items": [
		{
			"StandardReceiptId": 30010015809725,
			"ReceiptNumber": "SKR_DFF_TEST_1007",
			"BusinessUnit": "Vision Operations",
			"ReceiptMethod": "Manual",
			"ReceiptDate": "2018-07-16",
			"DocumentNumber": null,
			"Amount": 451.23,
			"Currency": "USD",
			"ConversionRateType": null,
			"ConversionDate": null,
			"ConversionRate": null,
			"State": "Unapplied",
			"Status": "Cleared",
			"RemittanceBankName": "Bank of America",
			"RemittanceBankBranch": "New York",
			"RemittanceBankAccountNumber": "10271-17621-619",
			"RemittanceBankDepositDate": "2018-07-16",
			"RemittanceBankAllowOverride": "N",
			"CustomerName": "Hillman and Associates",
			"TaxpayerIdentificationNumber": "78-45664786",
			"CustomerSite": "Tulsa (OPS)",
			"CustomerAccountNumber": "1004",
			"CustomerBank": null,
			"CustomerBankBranch": null,
			"CustomerBankAccountNumber": null,
			"UnappliedAmount": "451.23",
			"AccountedAmount": "451.23",
			"AccountingDate": "2018-07-16"
			"MaturityDate": "2018-07-16"
			"PostmarkDate": null,
			"ReceiptAtRisk": "N",
			"ReceivablesSpecialist": null,
			"Comments": null,
			"CreditCardTokenNumber": null,
			"CreditCardAuthorizationRequestIdentifier": null,
			"CardHolderFirstName": null,
			"CardHolderLastName": null,
			"CreditCardIssuerCode": null,
			"CreditCardExpirationDate": null,
			"VoiceAuthorizationCode": null,
			"CreatedBy": "AR_MGR_OPERATIONS",
			"CreationDate": "2018-07-16T13:59:51.001+00:00",
			"LastUpdateDate": "2018-07-16T13:59:51.331+00:00",
			"LastUpdatedBy": "AR_MGR_OPERATIONS",
        }
    ]
}