Get all receivables credit memos

get

/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos

Request

Query Parameters
  • When this parameter is provided, the specified children are included in the resource payload (instead of just a link). The value of this query parameter is "all" or "". More than one child can be specified using comma as a separator. Example: ?expand=Employees,Localizations. Nested children can also be provided following the format "Child.NestedChild" (Example: ?expand=Employees.Managers). If a nested child is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?expand=Employees.Managers" is the same as "?expand=Employees,Employees.Managers" (which will expand Employees and Managers).
  • This parameter filters the resource fields. Only the specified fields are returned, which means that if no fields are specified, no fields are returned (useful to get only the links). If an indirect child resource is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?fields=Employees.Managers:Empname" is the same as "?fields=;Employees:;Employees.Managers:Empname" (which will only return the "Empname" field for Managers). the value of this query parameter is a list of resource fields. The attribute can be a direct (Example: Employees) or indirect (Example: Employees.Managers) child. It cannot be combined with expand query parameter. If both are provided, only fields will be considered.

    Format: ?fields=Attribute1,Attribute2

    Format for fields in child resource: ?fields=Accessor1:Attribute1,Attribute2
  • Used as a predefined finder to search the collection.

    Format: ?finder=<finderName>;<variableName>=<variableValue>,<variableName2>=<variableValue2>

    The following are the available finder names and corresponding finder variables:

    • PrimaryKey: Finds the credit memo that matches the primary key criteria specified.
      Finder Variables:
      • CustomerTransactionId; integer; The unique identifier of the credit memo.
    • creditMemosFinder: Finds credit memos using various attributes that match the primary key criteria specified.
      Finder Variables:
      • BindAccountingDate; string; The accounting date assigned to the credit memo.
      • BindAllowCompletion; string.
      • BindBillToCustomer; string; The name of the bill-to customer assigned to the credit memo.
      • BindBillToCustomerNumber; string; The account number of the bill-to customer assigned to the credit memo.
      • BindBillToSite; string; The number that identifies the bill-to customer site assigned to the credit memo.
      • BindBusinessUnit; string; The business unit under which the credit memo is created. A business unit is a unit of an enterprise that performs one or more business functions that can be rolled up in a management hierarchy.
      • BindCreditMemoCurrency; string; The code that identifies the entered currency of the credit memo.
      • BindCreditMemoStatus; string; The value that indicates the level of completion of the credit memo. Valid values are Complete, Incomplete, and Frozen.
      • BindCrossReference; string; The reference field default value from the transaction source assigned to the credit memo. The reference field default value is the source document used to identify transactions created using the transaction source.
      • BindDeliveryMethod; string; The method used to print and deliver credit memo transactions. Valid values are E-Mail, Paper, and XML.
      • BindDocumentNumber; integer; The document sequence number assigned to the credit memo.
      • BindIntercompany; string; The option used to identify the credit memo as an intercompany transaction.
      • BindPrimarySalesperson; string; The number that identifies the primary salesperson on the credit memo.
      • BindPrintStatus; string; The status that indicates whether the credit memo was printed.
      • BindPurchaseOrder; string; The purchase order number assigned to the credit memo.
      • BindShipToCustomerName; string; The name of the customer who receives the goods or services billed.
      • BindShipToSite; string; The number that identifies the ship-to customer site assigned to the credit memo.
      • BindTransactionDate; string; The date when the credit memo was created.
      • BindTransactionNumber; string; The number that identifies the credit memo.
      • BindTransactionSource; string; The transaction source assigned to the credit memo.
      • BindTransactionType; string; The transaction type assigned to the credit memo.
  • This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.
  • This parameter can be used to show only certain links while accessing a singular resource or a resource collection. The parameter value format is a comma-separated list of : <link_relation>

    Example:
    self,canonical
  • Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.
  • The resource item payload will be filtered in order to contain only data (no links section, for example).
  • This parameter orders a resource collection based on the specified fields. The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and "asc" or "desc". Specify "asc" for ascending and "desc" for descending. The default value is "asc". For example, ?orderBy=field1:asc,field2:desc
  • This query parameter defines the where clause. The resource collection will be queried using the provided expressions. The value of this query parameter is one or more expressions. Example: ?q=Deptno>=10 and <= 30;Loc!=NY

    Format: ?q=expression1;expression2

    You can use these queryable attributes to filter this collection resource using the q query parameter:
    • AllowCompletion; string; Indicates whether the transaction is reviewed and can be allowed to complete. Valid value to allow completion is Y.
    • BillToCustomerNumber; string; The account number of the bill-to customer assigned to the credit memo.
    • BillToSite; string; The number that identifies the bill-to customer site assigned to the credit memo.
    • BusinessUnit; string; The business unit under which the credit memo is created. A business unit is a unit of an enterprise that performs one or more business functions that can be rolled up in a management hierarchy.
    • CreditMemoCurrency; string; The code that identifies the entered currency of the credit memo.
    • CrossReference; string; The reference field default value from the transaction source assigned to the credit memo. The reference field default value is the source document used to identify transactions created using the transaction source.
    • CustomerTransactionId; integer; The unique identifier of the credit memo.
    • DocumentNumber; integer; The document sequence number assigned to the credit memo.
    • PrimarySalesperson; string; The number that identifies the primary salesperson on the credit memo.
    • PurchaseOrder; string; The purchase order number assigned to the credit memo.
    • PurchaseOrderDate; string; The date of the purchase order.
    • TransactionDate; string; The date when the credit memo was created.
    • TransactionNumber; string; The number that identifies the credit memo.
    • TransactionSource; string; The transaction source assigned to the credit memo.
    • TransactionType; string; The transaction type assigned to the credit memo.
  • The resource collection representation will include the "estimated row count" when "?totalResults=true", otherwise the count is not included. The default value is "false".
Header Parameters
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

Default Response

The following table describes the default response for this task.
Headers
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
Body ()
Root Schema : receivablesCreditMemos
Type: object
Show Source
Nested Schema : Items
Type: array
Title: Items
The items in the collection.
Show Source
Nested Schema : receivablesCreditMemos-item-response
Type: object
Show Source
Nested Schema : Attachments
Type: array
Title: Attachments
The attachments resource is used to view, create, and update attachments.
Show Source
Nested Schema : Notes
Type: array
Title: Notes
The note objects resource is used to view the note objects.
Show Source
Nested Schema : receivablesCreditMemoDFF
Type: array
Show Source
Nested Schema : Receivables Credit Memo Distributions
Type: array
Title: Receivables Credit Memo Distributions
The receivables credit memo distributions resource is used to create, get, and find distributions associated with the credit memo.
Show Source
Nested Schema : receivablesCreditMemoGdf
Type: array
Show Source
  • Discriminator: __FLEX_Context
    Discriminator: { "propertyName":"__FLEX_Context", "mapping":{ "JAxINTaxInvoices":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJAxINTaxInvoicesVO-item-response", "JAxKRReceivablesInformation":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJAxKRReceivablesInformationVO-item-response", "JAxTWTransactions":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJAxTWTransactionsVO-item-response", "JE_DE_Z4_REPORTING":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FDE__5FZ4__5FREPORTINGVO-item-response", "JE_ES_MODELO340":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO340VO-item-response", "JE_ES_MODELO347":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO347VO-item-response", "JE_ES_MODELO347PR":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO347PRVO-item-response", "JE_ES_MODELO349":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO349VO-item-response", "JE_ES_MODELO415_347":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO415__5F347VO-item-response", "JE_ES_MODELO415_347PR":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO415__5F347PRVO-item-response", "JE_IL_VAT_REPORTING":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FIL__5FVAT__5FREPORTINGVO-item-response", "JE_IT_ESL_OF_SERVICES":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FIT__5FESL__5FOF__5FSERVICESVO-item-response", "JExBGAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExBGAdditionalInfoVO-item-response", "JExCZAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExCZAdditionalInfoVO-item-response", "JExESOnlineVatReporting":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExESOnlineVatReportingVO-item-response", "JExHRAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExHRAdditionalInfoVO-item-response", "JExHUAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExHUAdditionalInfoVO-item-response", "JExPLAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExPLAdditionalInfoVO-item-response", "JExPTAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExPTAdditionalInfoVO-item-response", "JExROAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExROAdditionalInfoVO-item-response", "JExRSAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExRSAdditionalInfoVO-item-response", "JExRUAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExRUAdditionalInfoVO-item-response", "JExSIAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExSIAdditionalInfoVO-item-response", "JExSKAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExSKAdditionalInfoVO-item-response", "JExTRAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExTRAdditionalInfoVO-item-response", "JL_BR_ARXTWMAI_Additional":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJL__5FBR__5FARXTWMAI__5FAdditionalVO-item-response", "JLxARTransactions":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJLxARTransactionsVO-item-response", "JLxCLTransactions":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJLxCLTransactionsVO-item-response", "JLxCOTransactions":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJLxCOTransactionsVO-item-response", "JLxMXReceivablesInformation":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJLxMXReceivablesInformationVO-item-response" } }
Nested Schema : Receivables Credit Memo Lines
Type: array
Title: Receivables Credit Memo Lines
The receivables credit memo lines resource is used to get and find the lines of a credit memo.
Show Source
Nested Schema : receivablesCreditMemoTransactionDFF
Type: array
Show Source
  • Discriminator: __FLEX_Context
    Discriminator: { "propertyName":"__FLEX_Context", "mapping":{ "CONTRACT INTERNAL INVOICES":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceHeaderDFF_view_CreditMemoInterfaceHeaderFLEXCONTRACT____INTERNAL____INVOICESVO-item-response", "CONTRACT INVOICES":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceHeaderDFF_view_CreditMemoInterfaceHeaderFLEXCONTRACT____INVOICESVO-item-response" } }
Nested Schema : receivablesCreditMemos-attachments-item-response
Type: object
Show Source
Nested Schema : receivablesCreditMemos-notes-item-response
Type: object
Show Source
Nested Schema : receivablesCreditMemos-receivablesCreditMemoDFF-item-response
Type: object
Show Source
Nested Schema : receivablesCreditMemos-receivablesCreditMemoDistributions-item-response
Type: object
Show Source
Nested Schema : receivablesCreditMemoDistributionDFF
Type: array
Show Source
Nested Schema : receivablesCreditMemos-receivablesCreditMemoDistributions-receivablesCreditMemoDistributionDFF-item-response
Type: object
Show Source
Nested Schema : Discriminator: __FLEX_Context
Type: object
Discriminator: __FLEX_Context

Discriminator Values

Match One Schema
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJAxINTaxInvoicesVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJAxKRReceivablesInformationVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJAxTWTransactionsVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FDE__5FZ4__5FREPORTINGVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO340VO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO347VO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO347PRVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO349VO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO415__5F347VO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FES__5FMODELO415__5F347PRVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FIL__5FVAT__5FREPORTINGVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJE__5FIT__5FESL__5FOF__5FSERVICESVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExBGAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExCZAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExESOnlineVatReportingVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExHRAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExHUAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExPLAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExPTAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExROAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExRSAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExRUAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExSIAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExSKAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJExTRAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJL__5FBR__5FARXTWMAI__5FAdditionalVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJLxARTransactionsVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJLxCLTransactionsVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJLxCOTransactionsVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoHeaderGdf_view_CreditMemoHeaderGdfJLxMXReceivablesInformationVO-item-response
Type: object
Show Source
Nested Schema : receivablesCreditMemos-receivablesCreditMemoLines-item-response
Type: object
Show Source
Nested Schema : Attachments
Type: array
Title: Attachments
The attachments resource is used to view, create, and update attachments.
Show Source
Nested Schema : receivablesCreditMemoLineDFF
Type: array
Show Source
Nested Schema : receivablesCreditMemoLineGdf
Type: array
Show Source
  • Discriminator: __FLEX_Context
    Discriminator: { "propertyName":"__FLEX_Context", "mapping":{ "JAxINAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJAxINAdditionalInfoVO-item-response", "JE_IL_EXPORT_INFO":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJE__5FIL__5FEXPORT__5FINFOVO-item-response", "JE_IT_ESL_OF_SERVICES":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJE__5FIT__5FESL__5FOF__5FSERVICESVO-item-response", "JExBGAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExBGAdditionalInfoVO-item-response", "JExCZAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExCZAdditionalInfoVO-item-response", "JExHRAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExHRAdditionalInfoVO-item-response", "JExHUAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExHUAdditionalInfoVO-item-response", "JExPLAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExPLAdditionalInfoVO-item-response", "JExPTAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExPTAdditionalInfoVO-item-response", "JExROAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExROAdditionalInfoVO-item-response", "JExRSAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExRSAdditionalInfoVO-item-response", "JExRUAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExRUAdditionalInfoVO-item-response", "JExSIAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExSIAdditionalInfoVO-item-response", "JExSKAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExSKAdditionalInfoVO-item-response", "JExTRBaBsReporting":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExTRBaBsReportingVO-item-response", "JLxBRAdditionalInfo":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJLxBRAdditionalInfoVO-item-response" } }
Nested Schema : Receivables Credit Memo Line Tax Lines
Type: array
Title: Receivables Credit Memo Line Tax Lines
The receivables credit memo line tax lines resource is used to create, get, and find the tax lines of a credit memo line.
Show Source
Nested Schema : receivablesCreditMemoLineTransactionDFF
Type: array
Show Source
  • Discriminator: __FLEX_Context
    Discriminator: { "propertyName":"__FLEX_Context", "mapping":{ "CONTRACT INTERNAL INVOICES":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXCONTRACT____INTERNAL____INVOICESVO-item-response", "CONTRACT INVOICES":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXCONTRACT____INVOICESVO-item-response", "Contracts Context":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXContracts____ContextVO-item-response", "DOO":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXDOOVO-item-response", "FOS":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXFOSVO-item-response", "GLOBAL_PROCUREMENT":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXGLOBAL__5FPROCUREMENTVO-item-response", "INTERCOMPANY":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXINTERCOMPANYVO-item-response", "INTERNAL_ALLOCATIONS":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXINTERNAL__5FALLOCATIONSVO-item-response", "Intercompany_Agreement":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXIntercompany__5FAgreementVO-item-response", "Joint Venture Invoice":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXJoint____Venture____InvoiceVO-item-response", "ORA_ACADEMIC_PERIOD_FEES":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FACADEMIC__5FPERIOD__5FFEESVO-item-response", "ORA_ASSIGNED_CREDITS":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FASSIGNED__5FCREDITSVO-item-response", "ORA_CPQ CLOUD":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FCPQ____CLOUDVO-item-response", "ORA_CURRICULUM_FEES":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FCURRICULUM__5FFEESVO-item-response", "ORA_DOO_ORIGIN_SUBSCRIPTIONS":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FDOO__5FORIGIN__5FSUBSCRIPTIONSVO-item-response", "ORA_EXTERNAL_CREDITS":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FEXTERNAL__5FCREDITSVO-item-response", "ORA_FIXED ASSETS":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FFIXED____ASSETSVO-item-response", "ORA_GENERAL_FEES":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FGENERAL__5FFEESVO-item-response", "ORA_LEASE_ACCOUNTING":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FLEASE__5FACCOUNTINGVO-item-response", "ORA_PSCR":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FPSCRVO-item-response", "ORA_RECURRING BILL":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FRECURRING____BILLVO-item-response", "ORA_SPONSORSHIP_FEES":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FSPONSORSHIP__5FFEESVO-item-response", "Subscriptions Context":"#/components/schemas/oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXSubscriptions____ContextVO-item-response" } }
Nested Schema : receivablesCreditMemos-receivablesCreditMemoLines-attachments-item-response
Type: object
Show Source
Nested Schema : receivablesCreditMemos-receivablesCreditMemoLines-receivablesCreditMemoLineDFF-item-response
Type: object
Show Source
Nested Schema : Discriminator: __FLEX_Context
Type: object
Discriminator: __FLEX_Context

Discriminator Values

Match One Schema
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJAxINAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJE__5FIL__5FEXPORT__5FINFOVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJE__5FIT__5FESL__5FOF__5FSERVICESVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExBGAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExCZAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExHRAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExHUAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExPLAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExPTAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExROAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExRSAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExRUAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExSIAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExSKAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJExTRBaBsReportingVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoLineGdf_view_CreditMemoLineGdfJLxBRAdditionalInfoVO-item-response
Type: object
Show Source
Nested Schema : receivablesCreditMemos-receivablesCreditMemoLines-receivablesCreditMemoLineTaxLines-item-response
Type: object
Show Source
Nested Schema : Discriminator: __FLEX_Context
Type: object
Discriminator: __FLEX_Context

Discriminator Values

Match One Schema
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXCONTRACT____INTERNAL____INVOICESVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXCONTRACT____INVOICESVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXContracts____ContextVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXDOOVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXFOSVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXGLOBAL__5FPROCUREMENTVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXINTERCOMPANYVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXINTERNAL__5FALLOCATIONSVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXIntercompany__5FAgreementVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXJoint____Venture____InvoiceVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FACADEMIC__5FPERIOD__5FFEESVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FASSIGNED__5FCREDITSVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FCPQ____CLOUDVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FCURRICULUM__5FFEESVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FDOO__5FORIGIN__5FSUBSCRIPTIONSVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FEXTERNAL__5FCREDITSVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FFIXED____ASSETSVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FGENERAL__5FFEESVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FLEASE__5FACCOUNTINGVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FPSCRVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FRECURRING____BILLVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXORA__5FSPONSORSHIP__5FFEESVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceLineDFF_view_CreditMemoInterfaceLineFLEXSubscriptions____ContextVO-item-response
Type: object
Show Source
Nested Schema : Discriminator: __FLEX_Context
Type: object
Discriminator: __FLEX_Context

Discriminator Values

Match One Schema
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceHeaderDFF_view_CreditMemoInterfaceHeaderFLEXCONTRACT____INTERNAL____INVOICESVO-item-response
Type: object
Show Source
Nested Schema : oracle_apps_flex_financials_receivables_transactions_shared_restModel_CreditMemoInterfaceHeaderDFF_view_CreditMemoInterfaceHeaderFLEXCONTRACT____INVOICESVO-item-response
Type: object
Show Source
Back to Top

Examples

Example 1

The following example shows how to retrieve all the receivables credit memos by submitting a GET request on the REST resource using cURL.

curl -i -u "<username>:<password>" -H "Content-Type: application/vnd.oracle.adf.resourcecollection+json" -X GET https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos

Example Response Body

The following example shows the contents of the response body in JSON format:

{
    "items": [
        {
            "CustomerTransactionId": 300100541828351,
            "TransactionNumber": "22675",
            "TransactionDate": "2021-01-20",
            "CreatedBy": "AR_MGR_OPERATIONS",
            "CreationDate": "2021-04-22T05:57:58.001+00:00",
            "LastUpdatedBy": "AR_MGR_OPERATIONS",
            "LastUpdateDate": "2021-04-22T05:57:59.724+00:00",
            "CreditMemoCurrency": "EUR",
            "BusinessUnit": "Vision China 0101",
            "TransactionType": "IL Credit Memo",
            "TransactionSource": "Manual",
            "AccountingDate": "2018-12-31",
            "LegalEntityIdentifier": "Vision China 01",
            "CreditReason": "Discount",
            "BillToCustomerNumber": "CDRM_3135",
            "BillToSite": "CDRM_1164",
            "BillToCustomerName": "CNAO Customer JACN01",
            "EnteredAmount": -580.4,
            "DocumentNumber": null,
            "CrossReference": null,
            "CustomerReference": null,
            "CustomerReferenceDate": null,
            "BillingDate": null,
            "PurchaseOrder": null,
            "SpecialInstructions": null,
            "CreditMemoComments": null,
            "DefaultTaxationCountry": "CN",
            "FreightShipDate": null,
            "Carrier": null,
            "FreightShippingReference": null,
            "FreightFOB": null,
            "ConversionRateType": "User",
            "ConversionRate": 12.1,
            "ConversionRateDate": "2021-01-20",
            "FirstPartyRegistrationNumber": "VC01000001",
            "ThirdPartyRegistrationNumber": "110101000000101",
            "ShipToCustomerName": "CNAO Customer JACN01",
            "ShipToCustomerNumber": "CDRM_68410",
            "ShipToCustomerSite": "CDRM_27038",
            "FreightCreditAmount": null,
            "PrimarySalesperson": null,
            "Intercompany": "No",
            "TransactionBalanceDue": -580.4,
            "DeliveryMethod": null,
            "PrintStatus": "No",
            "PrintDate": null,
            "GenerateBill": "Yes",
            "DocumentFiscalClassifcation": null,
            "PayingCustomerName": "CNAO Customer JACN01",
            "PayingCustomerSite": "CDRM_1164",
            "PayingCustomerAccount": "CDRM_3135",
            "BillToContact": null,
            "ShipToContact": null,
            "SoldToPartyNumber": "CDRM_68410",
            "PurchaseOrderDate": null,
            "CreditMemoStatus": "Complete",
            "InternalNotes": null,
            "PurchaseOrderRevision": null,
            "StructuredPaymentReference": null,
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351",
                    "name": "receivablesCreditMemos",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351",
                    "name": "receivablesCreditMemos",
                    "kind": "item"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/transactionSources",
                    "name": "transactionSources",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/businessUnits",
                    "name": "businessUnits",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/billToCustomers",
                    "name": "billToCustomers",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/legalEntities",
                    "name": "legalEntities",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/billToSites",
                    "name": "billToSites",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/invoiceStatuses",
                    "name": "invoiceStatuses",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/thirdPartyTaxRegistrationNumbers",
                    "name": "thirdPartyTaxRegistrationNumbers",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/shipToCustomers",
                    "name": "shipToCustomers",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/firstPartyTaxRegistrationNumbers",
                    "name": "firstPartyTaxRegistrationNumbers",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/taxationCountries",
                    "name": "taxationCountries",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/creditMemoReasons",
                    "name": "creditMemoReasons",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/lov/transactionTypes",
                    "name": "transactionTypes",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/child/attachments",
                    "name": "attachments",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/child/notes",
                    "name": "notes",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/child/receivablesCreditMemoDFF",
                    "name": "receivablesCreditMemoDFF",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/child/receivablesCreditMemoDistributions",
                    "name": "receivablesCreditMemoDistributions",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/child/receivablesCreditMemoGdf",
                    "name": "receivablesCreditMemoGdf",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/child/receivablesCreditMemoLines",
                    "name": "receivablesCreditMemoLines",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541828351/child/receivablesCreditMemoTransactionDFF",
                    "name": "receivablesCreditMemoTransactionDFF",
                    "kind": "collection"
                }
            ]
        },
        {
            "CustomerTransactionId": 300100541860033,
            "TransactionNumber": "23670",
            "TransactionDate": "2021-01-20",
            "CreatedBy": "AR_MGR_OPERATIONS",
            "CreationDate": "2021-04-23T06:11:36.001+00:00",
            "LastUpdatedBy": "AR_MGR_OPERATIONS",
            "LastUpdateDate": "2021-04-23T06:11:43.708+00:00",
            "CreditMemoCurrency": "EUR",
            "BusinessUnit": "Vision China 0101",
            "TransactionType": "IL Credit Memo",
            "TransactionSource": "Manual",
            "AccountingDate": "2018-12-31",
            "LegalEntityIdentifier": "Vision China 01",
            "CreditReason": "Discount",
            "BillToCustomerNumber": "CDRM_3135",
            "BillToSite": "CDRM_1164",
            "BillToCustomerName": "CNAO Customer JACN01",
            "EnteredAmount": -580.4,
            "DocumentNumber": null,
            "CrossReference": null,
            "CustomerReference": null,
            "CustomerReferenceDate": null,
            "BillingDate": null,
            "PurchaseOrder": null,
            "SpecialInstructions": null,
            "CreditMemoComments": null,
            "DefaultTaxationCountry": "CN",
            "FreightShipDate": null,
            "Carrier": null,
            "FreightShippingReference": null,
            "FreightFOB": null,
            "ConversionRateType": "User",
            "ConversionRate": 12.1,
            "ConversionRateDate": "2021-01-20",
            "FirstPartyRegistrationNumber": "VC01000001",
            "ThirdPartyRegistrationNumber": "110101000000101",
            "ShipToCustomerName": "CNAO Customer JACN01",
            "ShipToCustomerNumber": "CDRM_68410",
            "ShipToCustomerSite": "CDRM_27038",
            "FreightCreditAmount": null,
            "PrimarySalesperson": null,
            "Intercompany": "No",
            "TransactionBalanceDue": -580.4,
            "DeliveryMethod": null,
            "PrintStatus": "No",
            "PrintDate": null,
            "GenerateBill": "Yes",
            "DocumentFiscalClassifcation": null,
            "PayingCustomerName": "CNAO Customer JACN01",
            "PayingCustomerSite": "CDRM_1164",
            "PayingCustomerAccount": "CDRM_3135",
            "BillToContact": null,
            "ShipToContact": null,
            "SoldToPartyNumber": "CDRM_68410",
            "PurchaseOrderDate": null,
            "CreditMemoStatus": "Complete",
            "InternalNotes": null,
            "PurchaseOrderRevision": null,
            "StructuredPaymentReference": null,
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033",
                    "name": "receivablesCreditMemos",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033",
                    "name": "receivablesCreditMemos",
                    "kind": "item"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/transactionSources",
                    "name": "transactionSources",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/businessUnits",
                    "name": "businessUnits",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/billToCustomers",
                    "name": "billToCustomers",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/legalEntities",
                    "name": "legalEntities",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/billToSites",
                    "name": "billToSites",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/invoiceStatuses",
                    "name": "invoiceStatuses",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/thirdPartyTaxRegistrationNumbers",
                    "name": "thirdPartyTaxRegistrationNumbers",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/shipToCustomers",
                    "name": "shipToCustomers",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/firstPartyTaxRegistrationNumbers",
                    "name": "firstPartyTaxRegistrationNumbers",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/taxationCountries",
                    "name": "taxationCountries",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/creditMemoReasons",
                    "name": "creditMemoReasons",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/lov/transactionTypes",
                    "name": "transactionTypes",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/child/attachments",
                    "name": "attachments",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/child/notes",
                    "name": "notes",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/child/receivablesCreditMemoDFF",
                    "name": "receivablesCreditMemoDFF",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/child/receivablesCreditMemoDistributions",
                    "name": "receivablesCreditMemoDistributions",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/child/receivablesCreditMemoGdf",
                    "name": "receivablesCreditMemoGdf",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/child/receivablesCreditMemoLines",
                    "name": "receivablesCreditMemoLines",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100541860033/child/receivablesCreditMemoTransactionDFF",
                    "name": "receivablesCreditMemoTransactionDFF",
                    "kind": "collection"
                }
            ]
        },
		...
    ],
    "count": 25,
    "hasMore": true,
    "limit": 25,
    "offset": 0,
    "links": [
        {
            "rel": "self",
            "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos",
            "name": "receivablesCreditMemos",
            "kind": "collection"
        }
    ]
}

Example 2

The following example shows how to find credit memos that are not allowed to complete by submitting a GET request on the REST resource using cURL.

curl -i -u "<username>:<password>" -H "Content-Type: application/json" -X GET https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos?finder=creditMemosFinder;BindAllowCompletion=N,BindTransactionSource=Shiv_BS

Example Response Body

The following example shows the contents of the response body in JSON format:

{
    "items": [
        {
            "CustomerTransactionId": 300100552607947,
            "TransactionNumber": "Cm123",
            "TransactionDate": "2022-05-09",
            "CreatedBy": "AR_MGR_OPERATIONS",
            "CreationDate": "2022-05-09T13:04:37.343+00:00",
            "LastUpdatedBy": "AR_MGR_OPERATIONS",
            "LastUpdateDate": "2022-05-09T13:06:14.386+00:00",
            "CreditMemoCurrency": "USD",
            "BusinessUnit": "Vision Operations",
            "TransactionType": "AC Trx Type CM 1",
            "TransactionSource": "Shiv_BS",
            "AccountingDate": "2022-05-09",
            "LegalEntityIdentifier": "USSYS12030",
            "CreditReason": null,
            "BillToCustomerNumber": "1001",
            "BillToSite": "New York (OPS)",
            "BillToCustomerName": "A T & T SOLUTIONS INC",
            "EnteredAmount": 1000,
            "DocumentNumber": null,
            "CrossReference": null,
            "CustomerReference": null,
            "CustomerReferenceDate": null,
            "BillingDate": null,
            "PurchaseOrder": null,
            "SpecialInstructions": null,
            "CreditMemoComments": null,
            "DefaultTaxationCountry": "US",
            "FreightShipDate": null,
            "Carrier": null,
            "FreightShippingReference": null,
            "FreightFOB": null,
            "ConversionRateType": null,
            "ConversionRate": null,
            "ConversionRateDate": null,
            "FirstPartyRegistrationNumber": "4567890",
            "ThirdPartyRegistrationNumber": null,
            "ShipToCustomerName": "A T & T SOLUTIONS INC",
            "ShipToCustomerNumber": "1001",
            "ShipToCustomerSite": "1082",
            "FreightCreditAmount": null,
            "PrimarySalesperson": null,
            "Intercompany": "No",
            "TransactionBalanceDue": null,
            "DeliveryMethod": null,
            "PrintStatus": "No",
            "PrintDate": null,
            "GenerateBill": "Yes",
            "DocumentFiscalClassifcation": null,
            "PayingCustomerName": "A T & T SOLUTIONS INC",
            "PayingCustomerSite": "New York (OPS)",
            "PayingCustomerAccount": "1001",
            "BillToContact": null,
            "ShipToContact": null,
            "SoldToPartyNumber": "1001",
            "PurchaseOrderDate": null,
            "CreditMemoStatus": "Incomplete",
            "InternalNotes": null,
            "PurchaseOrderRevision": null,
            "StructuredPaymentReference": null,
            "AllowCompletion": "N",
            "ControlCompletionReason": "No Transaction Allowed to Complete",
            "links": [
                {
                    "rel": "self",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947",
                    "name": "receivablesCreditMemos",
                    "kind": "item",
                    "properties": {
                        "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                    }
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947",
                    "name": "receivablesCreditMemos",
                    "kind": "item"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/businessUnits",
                    "name": "businessUnits",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/billToCustomers",
                    "name": "billToCustomers",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/transactionSources",
                    "name": "transactionSources",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/invoiceStatuses",
                    "name": "invoiceStatuses",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/transactionTypes",
                    "name": "transactionTypes",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/thirdPartyTaxRegistrationNumbers",
                    "name": "thirdPartyTaxRegistrationNumbers",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/firstPartyTaxRegistrationNumbers",
                    "name": "firstPartyTaxRegistrationNumbers",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/legalEntities",
                    "name": "legalEntities",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/creditMemoReasons",
                    "name": "creditMemoReasons",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/billToSites",
                    "name": "billToSites",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/taxationCountries",
                    "name": "taxationCountries",
                    "kind": "collection"
                },
                {
                    "rel": "lov",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/lov/shipToCustomers",
                    "name": "shipToCustomers",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/child/attachments",
                    "name": "attachments",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/child/notes",
                    "name": "notes",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/child/receivablesCreditMemoDFF",
                    "name": "receivablesCreditMemoDFF",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/child/receivablesCreditMemoDistributions",
                    "name": "receivablesCreditMemoDistributions",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/child/receivablesCreditMemoGdf",
                    "name": "receivablesCreditMemoGdf",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/child/receivablesCreditMemoLines",
                    "name": "receivablesCreditMemoLines",
                    "kind": "collection"
                },
                {
                    "rel": "child",
                    "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos/300100552607947/child/receivablesCreditMemoTransactionDFF",
                    "name": "receivablesCreditMemoTransactionDFF",
                    "kind": "collection"
                }
            ]
        }
    ],
    "count": 1,
    "hasMore": false,
    "limit": 25,
    "offset": 0,
    "links": [
        {
            "rel": "self",
            "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/receivablesCreditMemos",
            "name": "receivablesCreditMemos",
            "kind": "collection"
        }
    ]
}
Back to Top