interscript / interscript-api

API for interscript endpoint
1 stars 1 forks source link

Return "limits" of API accepted #6

Open ronaldtse opened 3 years ago

ronaldtse commented 3 years ago

e.g.

GET /limits

{ "message_size_max": "100000", "processing_time_max": "15000" }

message_size_max: in bytes processing_time_max: in ms

Or/and via GraphQL.

Originally posted by @ronaldtse in https://github.com/interscript/interscript-api/issues/1#issuecomment-660405590

phuonghuynh commented 3 years ago

@ronaldtse API Gateway don't support GET method by default (in proxy mode). I will investigate solution add GET method

Could we use "processing_time_max_milliseconds" for more descriptive?

{ "message_size_max": "100000", "processing_time_max": "15000" }

ronaldtse commented 2 years ago

Could we use "processing_time_max_milliseconds" for more descriptive?

Of course.