GET api/AnimationParticipations/ParticipationOfEmployeForAnimation/{employeId}/{animationId}
Get Specific AnimationParticipation Of given EmployeId And AnimationId
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
employeId | integer |
Required |
|
animationId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AnimationParticipationName | Description | Type | Additional information |
---|---|---|---|
ParticipationId | integer |
None. |
|
EmployesId | integer |
None. |
|
AnimationId | integer |
None. |
|
DateOfPublish | date |
None. |
|
IsWinner | boolean |
None. |
|
LastChanged | date |
None. |
|
LastChange_AuthorId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "ParticipationId": 1, "EmployesId": 2, "AnimationId": 3, "DateOfPublish": "2025-08-14T03:24:36.5783304+00:00", "IsWinner": true, "LastChanged": "2025-08-14T03:24:36.5783304+00:00", "LastChange_AuthorId": 1 }
application/xml, text/xml
Sample:
<AnimationParticipation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ELO_IdentityAPI_Eloapp.net.Models"> <AnimationId>3</AnimationId> <DateOfPublish>2025-08-14T03:24:36.5783304+00:00</DateOfPublish> <EmployesId>2</EmployesId> <IsWinner>true</IsWinner> <LastChange_AuthorId>1</LastChange_AuthorId> <LastChanged>2025-08-14T03:24:36.5783304+00:00</LastChanged> <ParticipationId>1</ParticipationId> </AnimationParticipation>