How to get Entry Object for Create Entry API [POST]

Hi,
I want to get the entry object data as mentioned in this API. If or has anyone completed this API before, please share the solution for this, any help would be appreciated, thanks!

Are you looking to use a C# client to access the data?

I’m trying to create my own tool for my own project using the REST APIs in Unity. So I’m a bit confused about the Entry Object and it’s values

It’s just a JSON POST body. Set the content type to application/json and your both to something that looks like this:

{
“content_hash”: “c76580fa26181bfa8d8952826bd334d5”,
“content_size”: 1234567,
“content_type”: “image/jpeg”,
“labels”: [
“string”
],
“metadata”: {},
“path”: “ios/character1.bundle”
}

content_hash is the md5sum of the file. Once you’ve created the Entry you have to upload the content in a separate step. That is PATCH request against /buckets/{bucketid}/entries/{entryid}/content/. You can also use a TUS client (Implementations | tus.io) to upload the file.