Hi,
I am trying to record some custom metadata when uploading diffs to a draft review via the API, however when the draft review is published the extra data doesn't seem to get transferred across to the final review which is what I would expect. Is there something special I need to do make this happen?
I have tried creating a simple extension which defines a custom field based on BaseReviewRequestField with matching ID to what is being uploaded via the API (using draft.update(extra_data_json={...}) from Python), in the hopes that the extension would be triggered to transfer the keys across.
The custom field type just defines the field_id and label.
Using this I can see the extra data displayed on the draft, so I am confident it is in the right place (and I can read it back via the API.
I also came across
this conversation which suggests adding the extra data directly to the review rather than going via the draft, however the extra data should correspond to what's in the diff so if the draft is discarded, the extra data should be too.
Cheers,
Jake