FormUrlEncoded

@Target(allowedTargets = [AnnotationTarget.FUNCTION])
annotation class FormUrlEncoded

Indicate the body will use form URL encoding.

Will have the header application/x-www-form-urlencoded MIME type.

Fields parameters needed to annotate with @Field or @FieldMap

Field names and values will be UTF-8 encoded before being URI-encoded in accordance to "https://datatracker.ietf.org/doc/html/rfc3986"

See also