GET api/Song/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
worship_Song| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Artist | string |
None. |
|
| Title | string |
None. |
|
| Lyrics | string |
None. |
|
| Key | string |
None. |
|
| LanguageId | integer |
None. |
|
| LoginId | integer |
None. |
|
| IsActive | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| UpdatedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Artist": "sample string 2",
"Title": "sample string 3",
"Lyrics": "sample string 4",
"Key": "sample string 5",
"LanguageId": 6,
"LoginId": 7,
"IsActive": true,
"CreatedDate": "2026-03-09T12:16:21.5905974-07:00",
"UpdatedDate": "2026-03-09T12:16:21.5905974-07:00"
}
application/xml, text/xml
Sample:
<worship_Song xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess"> <Artist>sample string 2</Artist> <CreatedDate>2026-03-09T12:16:21.5905974-07:00</CreatedDate> <Id>1</Id> <IsActive>true</IsActive> <Key>sample string 5</Key> <LanguageId>6</LanguageId> <LoginId>7</LoginId> <Lyrics>sample string 4</Lyrics> <Title>sample string 3</Title> <UpdatedDate>2026-03-09T12:16:21.5905974-07:00</UpdatedDate> </worship_Song>