Sydney Sweeney’s latest American Eagle campaign has ignited a fierce debate, with critics slamming its “great genes/jeans” wordplay as dangerously tone-deaf. The actress’s discussion of hereditary traits while modeling jeans has drawn comparisons to eugenic rhetoric, sparking allegations of promoting white supremacy.
Social media erupted with outrage as users dissected the campaign’s imagery, including crossed-out “genes” revealing “jeans.” While defenders call it playful marketing, the controversy highlights growing scrutiny of fashion’s messaging in a polarized cultural climate.
- Sydney Sweeney’s American Eagle “Great Jeans” campaign faces backlash for its “genes/jeans” wordplay, with critics accusing it of unintentionally promoting eugenics and white supremacist rhetoric.
- Social media outrage intensified over ads featuring Sweeney discussing hereditary traits while modeling, with viral memes drawing parallels to Nazi propaganda despite brand insistence on denim-focused intent.
- The controversy highlights fashion’s ongoing struggle with inclusive marketing, as critics condemn the campaign’s Eurocentric focus while defenders argue it’s being overanalyzed.
- American Eagle now faces strategic dilemmas, balancing potential boycotts against validating critics if they alter or apologize for the polarizing campaign.
-
/orders/{company_id}/{order_id}
-
get
-
201 OK
- Example Value:
{ "invoice_id": "12345678", "invoiceTo": "Suprimentos Carto S.A.", "order_id": "1234", "orderTo": "Suprimentos Carto S.A.", "creation_date": "2023-04-01 12=>34=>56", "obs": "Order placed for office supplies", "items": [ { "item_id": "1", "product": "Notebook", "quantity": 2, "price": "1000.00" }, { "item_id": "2", "product": "Pen", "quantity": 10, "price": "2.50" } ], "status": "Em preparação" }
- Schema:
{ "type": "object", "properties": { "invoice_id": { "type": "string", "description": "The unique identifier for the invoice." }, "invoiceTo": { "type": "string", "description": "The name of the entity the invoice is addressed to." }, "order_id": { "type": "string", "description": "The unique identifier for the order." }, "orderTo": { "type": "string", "description": "The name of the entity the order is addressed to." }, "creation_date": { "type": "string", "description": "The date and time when the order was created." }, "obs": { "type": "string", "description": "Additional observations or notes related to the order." }, "items": { "type": "array", "items": { "type": "object", "properties": { "item_id": { "type": "string", "description": "The unique identifier for the item." }, "product": { "type": "string", "description": "The name of the product." }, "quantity": { "type": "integer", "description": "The quantity of the product ordered." }, "price": { "type": "string", "description": "The price of the product." } } }, "description": "List of items included in the order." }, "status": { "type": "string", "description": "The current status of the order." } } }
- 404 Not Found
- 500 Internal Server Error
- /orders/{company_id}/{order_id}/status
-
-
get
-
201 OK
- Example Value:
{ "order_id": "1234", "status": "Em preparação" }
- Schema:
{ "type": "object", "properties": { "order_id": { "type": "string", "description": "The unique identifier for the order." }, "status": { "type": "string", "description": "The current status of the order." } } }
- 404 Not Found
- 500 Internal Server Error
- Invoices
- /invoices/{company_id}
-
-
get
-
201 OK
- Example Value:
{ "invoices": [ { "invoice_id": "12345678", "invoiceTo": "Suprimentos Carto S.A.", "order_id": "1234", "creation_date": "2023-04-01 12=>34=>56", "total": "1025.00", "status": "Pendente" }, { "invoice_id": "87654321", "invoiceTo": "Suprimentos Carto S.A.", "order_id": "4321", "creation_date": "2023-04-02 10=>20=>30", "total": "500.00", "status": "Paga" } ] }
- Schema:
{ "type": "object", "properties": { "invoices": { "type": "array", "items": { "type": "object", "properties": { "invoice_id": { "type": "string", "description": "The unique identifier for the invoice." }, "invoiceTo": { "type": "string", "description": "The name of the entity the invoice is addressed to." }, "order_id": { "type": "string", "description": "The unique identifier for the associated order." }, "creation_date": { "type": "string", "description": "The date and time when the invoice was created." }, "total": { "type": "string", "description": "The total amount of the invoice." }, "status": { "type": "string", "description": "The current status of the invoice." } } }, "description": "List of invoices for the company." } } }
- 404 Not Found
- 429 Too Many Requests
- /invoices/{company_id}/{invoice_id}
-
-
get
-
201 OK
- Example Value:
{ "invoice_id": "12345678", "invoiceTo": "Suprimentos Carto S.A.", "order_id": "1234", "orderTo": "Suprimentos Carto S.A.", "creation_date": "2023-04-01 12=>34=>56", "obs": "Order placed for office supplies", "items": [ { "item_id": "1", "product": "Notebook", "quantity": 2, "price": "1000.00" }, { "item_id": "2", "product": "Pen", "quantity": 10, "price": "2.50" } ], "status": "Pendente" }
- Schema:
{ "type": "object", "properties": { "invoice_id": { "type": "string", "description": "The unique identifier for the invoice." }, "invoiceTo": { "type": "string", "description": "The name of the entity the invoice is addressed to." }, "order_id": { "type": "string", "description": "The unique identifier for the associated order." }, "orderTo": { "type": "string", "description": "The name of the entity the order is addressed to." }, "creation_date": { "type": "string", "description": "The date and time when the invoice was created." }, "obs": { "type": "string", "description": "Additional observations or notes related to the invoice." }, "items": { "type": "array", "items": { "type": "object", "properties": { "item_id": { "type": "string", "description": "The unique identifier for the item." }, "product": { "type": "string", "description": "The name of the product." }, "quantity": { "type": "integer", "description": "The quantity of the product." }, "price": { "type": "string", "description": "The price of the product." } } }, "description": "List of items included in the invoice." }, "status": { "type": "string", "description": "The current status of the invoice." } } }
- 404 Not Found
- 500 Internal Server Error
- /invoices/{company_id}/{invoice_id}/payment
-
- put
- 200 OK
- 401 Unauthorized
- 404 Not Found
-

Comments