POST
/
data-assets
curl --request POST \
  --url https://api.gateway.tech/data-assets \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "acl": "<string>",
  "expiration_date": "<string>"
}'
{
  "id": 123
}

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and the JWT token.

Body

data
file

File to be uploaded when using multipart/form-data

acl
string

Access control list (ACL) for the data asset (e.g., ["acl": [{"address": "user wallet address or user DID", "roles": ["view"]}]])

expiration_date
string

Expiration date for the data asset (in RFC 3339 format)

Response

201 - application/json
Created
id
integer
required